這篇文章帶給大家的內容是介紹在mac下安裝php7.1 memcache擴充的方法,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
1、下載memcache原始碼檔案
https://github.com/websupport-sk/pecl-memcache/archive/php7.zip
##資料夾名為:pecl-memcache-php72、解壓縮後進入資料夾執行如下指令phpize我執行phpize的遇到這個報錯
$ phpize grep: /usr/include/php/main/php.h: No such file or directory grep: /usr/include/php/Zend/zend_modules.h: No such file or directory grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory Configuring for: PHP Api Version: Zend Module Api No: Zend Extension Api No:缺少PHP的header頭文件,再一看/usr/include資料夾根本不存在敲出如下指令:
$ xcode-select --install xcode-select: note: install requested for command line developer tools如果phpize還是無效、執行下列指令安裝header頭檔SDK即可:
$ cd /Library/Developer/CommandLineTools/Packages/$ open macOS_SDK_headers_for_macOS_10.14.pkg./ configure --with-php-config=/usr/local/opt/php\@7.1/bin/php-configphp-config修改為指定路徑
which php-config3、執行make & make install 指令4、設定php.ini加入下列語句:
extension="memcache.so"其中php.ini 路徑
/private/etc/php.ini
# 相關視頻教學推薦:《PHP教學》
以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多精彩內容大家可以追蹤php中文網相關教學欄位! ! !以上是mac下如何進行php7.1 memcache擴充的安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!