首頁  >  文章  >  後端開發  >  Centos7下php7如何安裝zip擴充

Centos7下php7如何安裝zip擴充

醉折花枝作酒筹
醉折花枝作酒筹轉載
2021-05-25 09:14:413707瀏覽

這篇文章跟大家介紹Centos7下php7安裝zip擴充的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

Centos7下php7如何安裝zip擴充

安裝:

yum install -y php-devel #用于编译
cd /usr/local/src
wget http://pecl.php.net/get/zip-1.15.3.tgz  
tar -zxvf zip-1.15.3.tgz

cd zip-1.15.3  
phpize
whereis php-config
./configure --with-php-config=/usr/bin/php-config

錯誤:configure: error: Please reinstall the libzip distribution

最新版本請參考官網:https://nih.at/libzip/ ,libzip 需要 cmake 。

yum install -y cmake
cd ../
yum remove libzip
wget https://libzip.org/download/libzip-1.2.0.tar.gz
tar -zxvf libzip-1.2.0.tar.gz
cd libzip-1.2.0.tar.gz
mkdir build && cd build && /usr/local/bin/cmake .. && make && make install

又報錯:

CMake Error at CMakeLists.txt:4 (CMAKE_MINIMUM_REQUIRED):
  CMake 3.0.2 or higher is required.  You are running version 2.8.12.2
-- Configuring incomplete, errors occurred!

cmake版本過低,需新版本。

yum remove cmake
yum install -y cmake3
cmake -version

OK,cmake環境版升級完成。

然後再編譯 zip 。

cd ../zip-1.15.3
./configure --with-php-config=/usr/bin/php-config
make
make install

安裝過程中若出現

fatal error: zipconf.h: No such file or directory

##使用指令:

find /usr/local -iname 'zipconf.h'
ln -s /usr/local/lib/libzip/include/zipconf.h /usr/local/include

然後再執行一遍安裝即可。最後用指令查看有沒有zip.so檔。

ls  /usr/lib64/php/modules/

修改 /etc/php.ini :

zlib.output_compression = On
extension=/usr/lib64/php/modules/zip.so
重啟 apache:

service httpd restart

再查看 phpinfo,就有 zip 擴充了。

zip model

推薦學習:

php影片教學#

以上是Centos7下php7如何安裝zip擴充的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除