這篇文章跟大家介紹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 擴充了。 推薦學習:
以上是Centos7下php7如何安裝zip擴充的詳細內容。更多資訊請關注PHP中文網其他相關文章!