Linux php 安装zip扩展

xiaoxiao2021-02-28  89

[root@localhost ~]# wget http://pecl.php.net/get/zip-1.13.5.tgz

[root@localhost ~]# tar zxvf zip-1.13.5.tgz

[root@localhost ~]# cd zip-1.13.5

[root@localhost ~]# phpize

[root@localhost ~]# ./configure --with-php-config=/usr/local/php7/bin/php-config

[root@localhost ~]# make

[root@localhost ~]# make install

安装成功后显示

Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

修改PHP配置文件:

[root@localhost ~]# vim /usr/local/php/etc/php.ini

添加如下:

extension=zip.so

保存退出:wq

重启服务

[root@localhost ~]# service httpd restart

转载请注明原文地址: https://www.6miu.com/read-51723.html

最新回复(0)