這篇文章為大家帶來了關於PHP的相關知識,其中主要跟大家介紹有關mac下pecl的擴展配置,本文是基於php7.4的,有興趣的朋友下面一起來看一下吧,希望對大家有幫助。
mac 下pecl 的擴充配置( 基於php7.4 )
環境確認
#如果你的php是透過brew安裝的,一般情況下是帶了pecl的。
$ pecl version PEAR Version: 1.10.13 PHP Version: 7.4.28 Zend Engine Version: 3.4.0
如果沒有,可以透過以下腳本安裝。
安裝腳本
$ curl -O https://pear.php.net/go-pear.phar $ sudo php -d detect_unicode=0 go-pear.phar
pecl配置
查看pecl的相關配置
$ pecl config-show
這裡可以看到pecl的預設擴充目錄
PEAR executables directory bin_dir /opt/homebrew/lib/php/pecl/bin PEAR documentation directory doc_dir /opt/homebrew/share/pear@7.4/doc PHP extension directory ext_dir /opt/homebrew/Cellar/php@7.4/7.4.28_1/lib/php/20190902PEAR directory php_dir /opt/homebrew/share/pear@7.4PEAR Installer cache directory cache_dir /private/tmp/pear/cache PEAR configuration file cfg_dir /opt/homebrew/lib/php/pecl/cfg
到擴充目錄看以下
/opt/homebrew/Cellar/php@7.4/7.4.28_1/ [master*] ls -all | grep pecl lrwxr-xr-x 1 yuan admin 26 3 30 20:21 pecl -> /opt/homebrew/lib/php/pecl
很明顯安裝擴充功能.so檔案的目錄是/opt/homebrew/Cellar/php@7.4/7.4 .28_1/pecl
,此目錄其實是軟體連結到了/opt/homebrew/lib/php/pecl
。
目錄配置
查看php的擴充目錄
$ php -i | grep extension_dir extension_dir => /opt/homebrew/lib/php/pecl/20190902
例如我安裝了一個 yaml.so
擴充功能。
直接在/opt/homebrew/etc/php/7.4/php.ini
中加入一行yaml.so
,會自動在/opt/ homebrew/lib/php/pecl/20190902/yaml.so
找到軟連接到/opt/homebrew/Cellar/php@7.4/7.4.28_1/pecl/20190902/yaml.so
的原始擴展。
推薦學習:《PHP影片教學》
以上是詳解mac下pecl的擴充配置(附程式碼實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!