一、PHP安装libzip发行版 https://libzip.org/
wget https://nih.at/libzip/libzip-1.2.0.tar.gz
tar zxvf libzip-1.2.0.tar.gz
cd libzip-1.2.0
./configure
make
make install
二、PHP安装ZIP扩展需要先安装libzip, zip扩展可能与PHP版本有关
wget http://pecl.php.net/get/zip-1.15.3.tgz
tar zxvf zip-1.15.3.tgz
cd zip-1.15.3
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
如果出现以下错误
In file included from /data/zip-1.15.3/php5/php_zip.h:31,
from /data/zip-1.15.3/php5/php_zip.c:34:
/usr/local/include/zip.h:59:21: error: zipconf.h: No such file or directory
In file included from /data/zip-1.15.3/php5/php_zip.h:31,
from /data/zip-1.15.3/php5/php_zip.c:34:
/usr/local/include/zip.h:258: error: expected specifier-qualifier-list before ‘zip_int64_t’
In file included from /data/zip-1.15.3/php5/php_zip.h:31,
from /data/zip-1.15.3/php5/php_zip.c:34:
/usr/local/include/zip.h:285: error: expected specifier-qualifier-list before ‘zip_uint64_t’
/usr/local/include/zip.h:307: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘zip_flags_t’
/usr/local/include/zip.h:309: error: expected declaration specifiers or ‘...’ before ‘*’ token
/usr/local/include/zip.h:309: error: expected declaration specifiers or ‘...’ before ‘zip_uint64_t’
解决方法:
cp /usr/local/lib/libzip/include/zipconf.h /usr/local/include/zipconf.h
make && make install
三、配置php.ini
1、将php.ini 中的 zlib.output_compression = Off 改为 zlib.output_compression = On
2、添加extension = /usr/local/php/lib/php/extensions/no-debug-zts-20100525/zip.so