这篇文章给大家分享的是有关Centos7下php7怎么安装zip扩展的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
安装:
yum install -y php-devel #用于编译 cd /usr/local/src wget http://pecl.php.net/get/zip-1.15.3.tgz tar -zxvf zip-1.15.3.tgz cd zip-1.15.3 phpize whereis php-config ./configure --with-php-config=/usr/bin/php-config
报错:configure: error: Please reinstall the libzip distribution
。
最新版本请参考官网:https://nih.at/libzip/ ,libzip 需要 cmake 。
yum install -y cmake cd ../ yum remove libzip wget https://libzip.org/download/libzip-1.2.0.tar.gz tar -zxvf libzip-1.2.0.tar.gz cd libzip-1.2.0.tar.gz mkdir build && cd build && /usr/local/bin/cmake .. && make && make install
又报错:
CMake Error at CMakeLists.txt:4 (CMAKE_MINIMUM_REQUIRED): CMake 3.0.2 or higher is required. You are running version 2.8.12.2 -- Configuring incomplete, errors occurred!
cmake版本过低,需新版本。
yum remove cmake yum install -y cmake3 cmake -version
OK,cmake环境版本升级完毕。
然后再编译 zip 。
cd ../zip-1.15.3 ./configure --with-php-config=/usr/bin/php-config make make install
安装过程中若出现
fatal error: zipconf.h: No such file or directory
使用命令:
find /usr/local -iname 'zipconf.h' ln -s /usr/local/lib/libzip/include/zipconf.h /usr/local/include
然后再执行一遍安装即可。最后用命令查看有没有zip.so文件。
ls /usr/lib64/php/modules/
修改 /etc/php.ini :
zlib.output_compression = On extension=/usr/lib64/php/modules/zip.so
重启 apache:
service httpd restart
再查看 phpinfo,就有 zip 扩展了。
感谢各位的阅读!关于“Centos7下php7怎么安装zip扩展”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。