服务器用的Windows系统,IIS + PHP的环境,最近一客户的程序需要zip扩展支持,分享一下安装方法。
下载扩展
访问官方地址:PECL :: Package :: zip :: 1.13.5下载对应PHP版本的zip扩展。
安装
下载后里面有很多文件,我们只需要php_zip.dll
/php_zip.pdb
这两个文件,复制到PHP安装目录下的ext
文件夹下。
接着修改php.ini
文件,载入zip扩展:extension=php_zip.dll
,保存一下,如果使用Apache服务器,就需要重启Apache。IIS下以FastCGI模式加载的PHP则不需要进一步操作了。
测试
可以使用下面的代码测试是否生效:
<?php
$rar_file = rar_open('test.rar') or die("Failed to open Rar archive");
$entries_list = rar_list($rar_file);
header('Content-Type: text/plain');
var_export($entries_list);
?>