0

curl を使用して、許可されたユーザーの Facebook の URL から写真を取得しています。写真ごとに zip ファイルに追加して、ユーザーがアルバム全体を zip としてダウンロードできるようにしています。

 if( !isset($_GET['id']) )
die("No direct access allowed!");
    require 'facebook.php';
  $facebook = new Facebook(array(
'appId'  => 'removed',
'secret' => 'removed',
'cookie' => true,
));

if( !isset($_GET['id']) )
die("No direct access allowed!");
    $params = array();
    if( isset($_GET['offset']) )
        $params['offset'] = $_GET['offset'];
    if( isset($_GET['limit']) )
        $params['limit'] = $_GET['limit'];
    $params['fields'] = 'name,source,images';
    $params = http_build_query($params, null, '&');
    $album_photos = $facebook->api("/{$_GET['id']}/photos?$params");
    if( isset($album_photos['paging']) ) {
        if( isset($album_photos['paging']['next']) ) {
            $next_url = parse_url($album_photos['paging']['next'], PHP_URL_QUERY) . "&id=" . $_GET['id'];
        }
        if( isset($album_photos['paging']['previous']) ) {
            $pre_url = parse_url($album_photos['paging']['previous'], PHP_URL_QUERY) . "&id=" . $_GET['id'];
        }
    }
    $photos = array();
    if(!empty($album_photos['data'])) {
        foreach($album_photos['data'] as $photo) {
            $temp = array();
            $temp['id'] = $photo['id'];
            $temp['name'] = (isset($photo['name'])) ? $photo['name']:'photo_'.$temp['id'];
            $temp['picture'] = $photo['images'][1]['source'];
            $temp['source'] = $photo['source'];
            $photos[] = $temp;
        }
    }
    ?>
<?php if(!empty($photos)) { ?>
<?php
$zip = new ZipArchive();


$tmp_file =tempnam('.','');
$file_opened=$zip->open($tmp_file, ZipArchive::CREATE);


foreach($photos as $photo) {
    $url=$photo['source'];
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $download_file=curl_exec($ch);
    #add it to the zip
    $file_added=$zip->addFile($download_file);
}

    # close zip
    $zip->close();

    # send the file to the browser as a download
    header('Content-Description: File Transfer');
    header('Content-Type: application/force-download');
    header('Content-Disposition: attachment; filename="albums.zip"');
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($tmp_file));
    ob_clean();
    flush();
    readfile($tmp_file);
    exit;
 } ?>

問題: zip->open はファイルを作成し、zip->add は追加されたファイルごとに 1 を返しますが、zip サイズはまだ 0 であり、readfile はダウンロードを要求しません。

4

1 に答える 1

1

現時点では、これを実行しようとしています。

foreach ($photos as $photo) {
    $url = $photo['source'];
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $download_file = curl_exec($ch);
    $file_added = $zip->addFile($download_file);
}

$dowload_file文字列であり、ファイル名ではないため、これは機能しません。cURLパラメータをファイルに保存し、ファイル名をに渡す必要があります$zip->addFilePHPのドキュメントを見ると、文字列ではなくファイル名が必要です。

追加するファイルへのパス。

次のようなことをする必要があります。

$temp_file = './temp_file.txt';
file_put_contents($temp_file, $download_file);
$file_added = $zip->addFile($temp_file);

// Delete after use
unlink($temp_file);
于 2013-01-19T14:07:04.523 に答える