centos6.9下php7安装zip扩展
Posted 屌丝IT男
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.9下php7安装zip扩展相关的知识,希望对你有一定的参考价值。
cd /usr/local/src
wget http://pecl.php.net/get/zip-1.13.5.tgz
tar -zxvf zip-1.13.5.tgz
cd zip-1.13.5
/opt/remi/php70/root/usr/bin/phpize #根据自己安装的路径变更
./configure --with-php-config=/opt/remi/php70/root/usr/bin/php-config #根据自己安装的路径变更
make
make test
make install
如果没有报错这样就安装完成了,用命令查看一下看有没有zip.so
ls /opt/remi/php70/root/usr/lib64/php/modules/
最后在php.ini里修改以下两项
1)zlib.output_compression = Off 改为 zlib.output_compression = On
2)增加extension=/opt/remi/php70/root/usr/lib64/php/modules/zip.so
重启nginx 或者apache,reload不行,一定要重启
/etc/init.d/nginx restart
如果是apache,使用service httpd restart
在phpinfo里查看是不是已经有了zip扩展了
以上是关于centos6.9下php7安装zip扩展的主要内容,如果未能解决你的问题,请参考以下文章
LNMP环境搭建(centos6.9+mysql5.7+php7.1+nginx1.9)