18

我想知道是否可以执行以下操作,并希望有人可以帮助我。

我想创建一个“下载 zip”功能,但是当个人点击下载时,该按钮会从我的外部域中获取图像,然后将它们捆绑到一个 zip 中,然后为他们下载。

我已经检查了如何执行此操作,但找不到任何好的方法来获取图像并强制将它们放入 zip 中进行下载。

我希望有人可以提供帮助

4

2 回答 2

67
# define file array
$files = array(
    'https://www.google.com/images/logo.png',
    'https://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 下载文件。

于 2012-12-18T09:53:19.180 回答
2

希望我没有理解错。

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';
}
?>
于 2012-12-18T09:46:18.937 回答