php – 创建zip时没有错误,但没有创建

前端之家收集整理的这篇文章主要介绍了php – 创建zip时没有错误,但没有创建前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我写了这个代码来创建一个ZIP文件并保存它.但不知何故,它不会显示任何错误,但它也不会创建一个ZIP文件.以下是代码
$zip = new ZipArchive;
$time = microtime(true);
$res = $zip->open("maps/zips/test_" . $time . ".zip",ZipArchive::CREATE);
if ($res === TRUE) {
    echo "RESULT TRUE...";
    $zip->addFile("maps/filename.ogz","filename.ogz"); //Sauerbraten map format
    $zip->addFromString('how_to_install.txt','Some Explanation...');
    $zip->close();
    $zip_created = true;
    echo "FILE ADDED!";
}

我做错了什么,我该怎么解决

apache或PHP可能没有权限在该目录中创建zip存档.从 ZipArchice::open评论之一:

If the directory you are writing or
saving into does not have the correct
permissions set,you won’t get any
error messages and it will look like
everything worked fine… except it
won’t have changed!

Instead make sure you collect the
return value of ZipArchive::close().
If it is false… it didn’t work.

在你的if语句中添加一个else子句并转储$res来查看结果:

if($res === TRUE) {
    ...
} else {
    var_dump($res);
}
原文链接:https://www.f2er.com/php/139914.html

猜你在找的PHP相关文章