Home  >  Article  >  Backend Development  >  PHP zip扩展Linux下安装过程分享_php实例

PHP zip扩展Linux下安装过程分享_php实例

WBOY
WBOYOriginal
2016-06-07 17:20:09702browse

1.依次运行以下命令

复制代码 代码如下:
wget http://pecl.php.net/get/zip-1.8.10.tgz
#tar zxvf zip-1.8.3.tgz
#cd zip-1.8.3
#/opt/php/bin/phpize   (对应的phpize路径)http://yige.org/
#./configure --with-php-config=/opt/php/bin/php-config (对应的php-config路径)
#make
#make install

2.生成的模块路径

复制代码 代码如下:
/opt/php/lib/php/extensions/no-debug-non-zts-20050922/zip.so

3.修改php.ini
复制代码 代码如下:

extension_dir = "./"
;修改为
extension_dir = "/opt/php/lib/php/extensions/no-debug-non-zts-20050922/"
;增加
extension="zip.so"

4.重启apache或php-cgi

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn