web-dev-qa-db-ja.com

PHPを使用してZipを作成し、URLからファイルを追加します

次のことが可能であり、誰かが私を助けてくれることを願っています。

「zipのダウンロード」機能を作成したいのですが、個人がダウンロードするためにクリックすると、ボタンが外部ドメインから画像をフェッチし、それらをZipにバンドルしてダウンロードします。

私はこれを行う方法を確認しましたが、イメージを取得してZipにダウンロードするよう強制する良い方法が見つかりません。

私は誰かが助けてくれることを望んでいた

17
ngplayground
# define file array
$files = array(
    'http://google.com/images/logo.png',
    'http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Wikipedia-logo-en-big.png/220px-Wikipedia-logo-en-big.png',
);

# create new Zip object
$Zip = new ZipArchive();

# create a temp file & open it
$tmp_file = tempnam('.', '');
$Zip->open($tmp_file, ZipArchive::CREATE);

# loop through each file
foreach ($files as $file) {
    # download file
    $download_file = file_get_contents($file);

    #add it to the Zip
    $Zip->addFromString(basename($file), $download_file);
}

# close Zip
$Zip->close();

# send the file to the browser as a download
header('Content-disposition: attachment; filename="my file.Zip"');
header('Content-type: application/Zip');
readfile($tmp_file);
unlink($tmp_file);

注:このソリューションでは、allow_url_fopen有効。それ以外の場合は、cURLを使用してファイルをダウンロードします。

58
Prisoner

理解できなかったことを願っています。

http://php.net/manual/en/book.Zip.php

私はこれを試していませんが、あなたが探しているもののようです。

<?php
$Zip = new ZipArchive;

if ($Zip->open('my_archive.Zip') === TRUE) {
    $Zip->addFile($url, basename($url));
    $Zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
?>
2
Deus Deceit