php解决安装zip扩展模块方法
来源:爱站网时间:2022-03-05编辑:网友分享
在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是否安装成功
php解决安装zip扩展模块方法不知道朋友们看明白了没有,对此还有不懂的问题,可以随时来网站咨询小编。如果你想获取更多技术内容,来js.aizhan.com。
上一篇:PHP编程之模板引擎介绍
下一篇:PHP编程里如何使用phar包