安装PECL Zip扩展

时间:2011-08-02 21:42:40

标签: php zip pecl

我正在尝试运行此代码

$files = array('readme.txt', 'test.html', 'image.gif');
$zip = new ZipFile;
$zip->open('file.zip', ZipArchive::CREATE);
foreach ($files as $file) {
  $zip->addFile($file);
}
$zip->close();

header('Content-Type: application/zip');
header('Content-disposition: attachment; filename=filename.zip');
header('Content-Length: ' . filesize($zipfilename));
readfile($zipname);

并意识到我必须安装PECL拉链装置,我相信我已经做好了核心工作,因为一旦它被收集起来,它就把它添加到我的phpinfo();

enter image description here

即使在安装此扩展程序后,我仍然收到此消息。

致命错误:

中找不到“ZipFile”类

1 个答案:

答案 0 :(得分:5)

查看manual

$zip = new ZipArchive();

该类名为ZipArchive,而不是ZipFile