gpt4 book ai didi

php - 使用 PHP 从 URL 读取 Zip 文件

转载 作者:可可西里 更新时间:2023-11-01 13:12:42 24 4
gpt4 key购买 nike

我正在寻找一个好的解决方案来使用 php 从 url 读取 zip 文件。

我检查了 zip_open() 函数,但我从未读过任何有关从另一台服务器读取文件的信息。

非常感谢

最佳答案

最好的方法是将远程文件复制到一个临时文件中:

$file = 'http://remote/url/file.zip';
$newfile = 'tmp_file.zip';

if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
}

然后,您可以对临时文件做任何您想做的事情:

 $zip = new ZipArchive();
if ($zip->open($newFile, ZIPARCHIVE::CREATE)!==TRUE) {
exit("cannot open <$filename>\n");
}

关于php - 使用 PHP 从 URL 读取 Zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5310407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com