欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mac 下安装php7.1 memcache扩展

程序员文章站 2022-10-06 12:53:50
1.下载memcache源代码文件 https://github.com/websupport-sk/pecl-memcache/archive/php7.zip 文件夹名为:pecl-memcache-php7 2.解压后进入文件夹执行如下命令 phpize 我执行phpize的遇到这个报错 缺少 ......

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