mac 下安裝php7.1 memcache擴展


1.下載memcache源代碼文件

https://github.com/websupport-sk/pecl-memcache/archive/php7.zip

文件夾名為:pecl-memcache-php7

2.解壓后進入文件夾執行如下命令

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-config

php-config修改為指定路徑

which php-config

3.執行make & make install 命令

4、配置php.ini加入如下:

extension="memcache.so"

php.ini 路徑
/private/etc/php.ini

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM