这是我用来解压缩文件的函数。
它包含以下选项
* 在您喜欢的任何目录中解压缩
* 在 zip 文件的目录中解压缩
* 在 zip 文件目录中包含 zip 文件名称的目录中解压缩。(例如:C:\test.zip 将解压缩到 C:\test\ 中)
* 覆盖现有文件或不覆盖
* 它使用 Create_dirs($path) 函数创建不存在的目录
您应该使用带有斜杠 (/) 的绝对路径,而不是反斜杠 (\)。
我在使用加载了 php_zip.dll 扩展的 PHP 5.2.0 时对其进行了测试
<?php
function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true)
{
if ($zip = zip_open($src_file))
{
if ($zip)
{
$splitter = ($create_zip_name_dir === true) ? "." : "/";
if ($dest_dir === false) $dest_dir = substr($src_file, 0, strrpos($src_file, $splitter))."/";
create_dirs($dest_dir);
while ($zip_entry = zip_read($zip))
{
$pos_last_slash = strrpos(zip_entry_name($zip_entry), "/");
if ($pos_last_slash !== false)
{
create_dirs($dest_dir.substr(zip_entry_name($zip_entry), 0, $pos_last_slash+1));
}
if (zip_entry_open($zip,$zip_entry,"r"))
{
$file_name = $dest_dir.zip_entry_name($zip_entry);
if ($overwrite === true || $overwrite === false && !is_file($file_name))
{
$fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
file_put_contents($file_name, $fstream );
chmod($file_name, 0777);
echo "save: ".$file_name."<br />";
}
zip_entry_close($zip_entry);
}
}
zip_close($zip);
}
}
else
{
return false;
}
return true;
}
function create_dirs($path)
{
if (!is_dir($path))
{
$directory_path = "";
$directories = explode("/",$path);
array_pop($directories);
foreach($directories as $directory)
{
$directory_path .= $directory."/";
if (!is_dir($directory_path))
{
mkdir($directory_path);
chmod($directory_path, 0777);
}
}
}
}
unzip("C:/zipfiletest/zip-file.zip", false, true, true);
unzip("C:/zipfiletest/zip-file.zip", "C:/another_map/zipfiletest/", true, false);
?>