我正在尝试通过压缩所有内容来备份我的网站,并将zip放入一个无法访问的文件夹中,使用PHP完成。我的代码是
<?php
Zip('../../', './');
function Zip($source, $destination)
{
if (extension_loaded('zip') === true)
{ echo'a';
if (file_exists($source) === true)
{
$zip = new ZipArchive();
if ($zip->open($destination, ZIPARCHIVE::CREATE) === true)
{
$source = realpath($source);
if (is_dir($source) === true)
{
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);
foreach ($files as $file)
{
$file = realpath($file);
if (is_dir($file) === true)
{
$zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
}
else if (is_file($file) === true)
{
$zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
}
}
}
else if (is_file($source) === true)
{
$zip->addFromString(basename($source), file_get_contents($source));
}
}
return $zip->close(); // The error.
}
}
return false;
}
?>
但是我收到Warning: ZipArchive::close() [ziparchive.close]: Invalid or unitialized Zip object in backup.php on line 41
的错误我搜索了谷歌,但没有结果。任何帮助将不胜感激;)谢谢先进。
答案 0 :(得分:4)
从 PHP 5.2.8 ,这个问题已经开始出现。
尝试将FLAGS
添加到open
方法
- ZipArchive::OVERWRITE
- ZipArchive::CREATE
- ZipArchive::EXCL
- ZipArchive::CHECKCONS
此命令最有可能解决问题
$zip->open($destination, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE);
如果上述方法不起作用,那么快速和最肮脏的修复
@$zip->close();