是否有用于在php中创建/解压缩zip文件的库?
ZipArchive类工作不正常,这在php.net上提到: (对于我检查的每个功能)
ZipArchive :: addEmptyDir (没有可用的版本信息,可能只在CVS中)
答案 0 :(得分:2)
检查PEAR Archive_Zip它可能对您有所帮助http://pear.php.net/package/Archive_Zip/docs/latest/Archive_Zip/Archive_Zip.html
答案 1 :(得分:1)
PHP通过GZip支持本机Zip(默认情况下可能未启用):
http://php.net/zlib
您也可以使用此类(Drupal不是此实现的一部分):
http://drupal.org/node/83253
答案 2 :(得分:0)
same module which includes ZipArchive还包括许多允许对zip文件进行过程访问的函数。此功能在PHP 4(自4.0.7开始)和PHP 5(自5.2.0开始)开始提供。
$zip = zip_open("foo.zip");
$files = [];
while ($entry = zip_read($zip)) {
zip_entry_open($zip, $entry);
$files[zip_entry_name($entry)] = zip_entry_read($entry, zip_entry_filesize($entry));
zip_entry_close($entry);
}
zip_close($zip);
答案 3 :(得分:0)
好的,我查看了Irmantas发布的http://pear.php.net/package/Archive_Zip,
但它说:
“此软件包不再维护,已被取代。软件包已移至pecl.php.net通道,包zip。”
然后我搜索了pear.php.net并偶然发现:
http://pear.php.net/package/File_Archive
但File_Archive没有一套非常直观的方法。 但我想要制作tar文件的简单功能,以及 从tar文件中提取文件。
以下片段实现: 从tar文件中提取文件 - >
<?php
require_once "File/Archive.php";
$tmp = 'output';
$t1 = 'check.tar';
File_Archive::setOption('tmpDirectory','tmp');
$r = File_Archive::extract(
File_Archive::read($t1.'/'),
File_Archive::toFiles($tmp)
);
?>
将文件添加到tar文件 - &gt;
<?php
require_once "Archive.php";
$dir = "../../mysql/data/blackStone/";
$files[0] = "";
$i = 0;
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false ) {
if( $file != "." && $file != ".." )
$files[$i++] = $dir.$file;
}
}
File_Archive::extract(
$files,
File_Archive::toArchive(
'check.tar',
File_Archive::toOutput()
)
);
?>
答案 4 :(得分:0)
您可以从PHP调用.NET程序集。 如果您不介意,那么您可以使用DotNetZip - 它可靠且完全不稳定。
示例代码:
<?php
try
{
$fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
$zipOutput = "c:\\temp\\" . $fname;
# Use COM interop to get to Ionic Zip. (Windows only)
$zip = new COM("Ionic.Zip.ZipFile");
$zip->Name = $zipOutput;
$dirToZip= "c:\\temp\\psh";
# Encryption: 3=AES256, 2=AES128, 1=PKZIP, 0=None.
$zip->Encryption = 3;
$zip->Password = "AES-Encryption-Is-Secure";
$zip->AddDirectory($dirToZip);
$zip->Save();
$zip->Dispose();
if (file_exists($zipOutput))
{
header('Cache-Control: no-cache, must-revalidate');
header('Content-Type: application/x-zip');
header('Content-Disposition: attachment; filename=' . $fname);
header('Content-Length: ' . filesize($zipOutput));
readfile($zipOutput);
unlink($zipOutput);
}
else
{
echo '<html>';
echo ' <head>';
echo ' <title>Calling DotNetZip from PHP through COM</title>';
echo ' <link rel="stylesheet" href="basic.css"/>';
echo ' </head>';
echo '<body>';
echo '<h2>Whoops!</h2>' . "<br/>\n";
echo '<p>The file was not successfully generated.</p>';
echo '</body>';
echo '</html>';
}
}
catch (Exception $e)
{
echo '<html>';
echo ' <head>';
echo ' <title>Calling DotNetZip from PHP through COM</title>';
echo ' <link rel="stylesheet" href="basic.css"/>';
echo ' </head>';
echo '<body>';
echo '<h2>Whoops!</h2>' . "<br/>\n";
echo '<p>The file was not successfully generated.</p>';
echo '<p>Caught exception: ', $e->getMessage(), '</p>', "\n";
echo '<pre>';
echo $e->getTraceAsString(), "\n";
echo '</pre>';
echo '</body>';
echo '</html>';
}
?>