linux下安裝php擴充的方法:1.使用【pecl install xxxx(副檔名)】指令安裝PHP擴充;2、透過【make && make install 】指令編譯安裝php擴充。
推薦:《PHP影片教學》
Linux環境下PHP擴充安裝
1.使用pecl,pear工具安裝PHP擴充功能
pecl install xxxx(扩展名)
2.編譯安裝方式
#php源码中的ext目录下含有一些常用的扩展 #举例安装一个mysqli扩展 cd /root/php-7.1.9/ext/mysqli phpize ./configure --with-php-config=/usr/local/php/bin/php-config make && make install #tip #有些扩展会提示 config0.m4 不存在,一般是因为m4文件命名问题 #如果源码中没有你要的扩展,比如redis扩展在ext目录下不存在,直接使用pecl install安装,如果pecl安装失败,百度一下吧(github)
以上是linux下安裝php副檔名的詳細內容。更多資訊請關注PHP中文網其他相關文章!