是否有用于在 php 中创建/提取 zip 文件的库?
ZipArchive 类工作不规律,这在 php.net 上有所提及:(对于我检查的每个函数)
ZipArchive::addEmptyDir(没有可用的版本信息,可能仅在 CVS 中)
检查 PEAR Archive_Zip 它可能会帮助你http://pear.php.net/package/Archive_Zip/docs/latest/Archive_Zip/Archive_Zip.html
PHP 通过 GZip 提供本机 Zip 支持(默认情况下可能未启用): http:
//php.net/zlib
你也可以使用这个类(Drupal 不是这个实现的一部分):
http ://drupal.org/node/83253
包含 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);
好的,我检查了 Irmantas 发布的http://pear.php.net/package/Archive_Zip
,
但它说:
“这个包不再维护,已被取代。包已移至频道 pecl.php.net,包邮编。” 然后我搜索 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 文件 ->
<?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()
)
);
?>
您可以从 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>';
}
?>