php 安裝zip模塊


為php安裝zip擴展

wget http://pecl.php.net/get/zip-1.13.5.tgz
tar -zvxf zip-1.13.5.tgz
cd zip-1.13.5
/home/xxx/php/bin/phpize

出現錯誤:

Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable. Then, rerun this script.

解決方法:

yum install m4
yum install autoconf

再安裝:

/home/xxx/php/bin/phpize
./configure  --with-php-config=/home/xxx/php/bin/php-config
make
make install

然后修改php.ini,添加:

extension=zip.so

重啟apache,查看phpinfo是否安裝成功。

 

鏈接:https://www.php.cn/php-weizijiaocheng-434549.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM