在Debian 上安装php zip扩展
生活随笔
收集整理的這篇文章主要介紹了
在Debian 上安装php zip扩展
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
cd /usr/local/src
# wget http://pecl.php.net/get/zip-1.13.5.tgz
# tar -xf zip-1.13.5.tgz
# cd zip-1.13.5
# phpize 或者/usr/local/php/bin/phpize
# ./configure -with-php-config=/usr/bin/php-config7.0
# make && make install
問題:
-
bash: phpize: command not found
解決
先看下版本: php -v # 比如我的版本是php7.0的
安裝: sudo apt-get install php7.0-dev
執(zhí)行: phpize -
debian configure: error: zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located
解決:apt-get install zlib1g-dev
補充:
- phpenmod moduleName enables a module to php7 (restart apache after that sudo service apache2 restart)
- phpdismod moduleName disables a module to php7 (restart apache after that sudo service apache2 restart)
- php -m lists the loaded modules
總結(jié)
以上是生活随笔為你收集整理的在Debian 上安装php zip扩展的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux系统下命令行连接蓝牙设备
- 下一篇: [Git] 踩坑