Installing PHP Zip Extension

眉间皱痕 提交于 2019-11-28 06:15:41

You may have several php.ini files, one for CLI and one for apache. Run php --ini to see where the CLI ini location is.

Ajeet Shah

This is how I installed it on my machine (ubuntu):

php 7:

sudo apt-get install php7.0-zip

php 5:

sudo apt-get install php5-zip

Edit:
Make sure to restart your server afterwards.

sudo /etc/init.d/apache2 restart or sudo service nginx restart

PS: If you are using centOS, please check above cweiske's answer
But if you are using a Debian derivated OS, this solution should help you installing php zip extension.

1 Step - Install a required extension

sudo apt-get install libz-dev -y

2 Step - Install the PHP extension

pecl install zlib zip

3 Step - Restart your Apache

sudo /etc/init.d/apache2 restart

If does not work you can check if the zip.ini is called in your phpinfo, to check if the zip.so was included.

Simply use sudo yum install php-zip

If you use php5.6 then execute this:

sudo apt-get install php5.6-zip

BharathRao

if sudo apt-get install php5.6-zip does not work, try sudo apt-get update and then try sudo apt-get install php5.6-zip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!