当前位置:首页 > PHP教程 > php环境安装 > 列表

mac下如何进行php7.1 memcache扩展的安装

发布:smiling 来源: PHP粉丝网  添加日期:2020-02-08 16:54:54 浏览: 评论:0 

本篇文章给大家带来的内容是介绍在mac下安装php7.1 memcache扩展的方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

1、下载memcache源代码文件

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

文件夹名为:pecl-memcache-php7

2、解压后进入文件夹执行如下命令

phpize

我执行phpize的遇到这个报错

  1. $ phpize 
  2.  
  3. grep: /usr/include/php/main/php.h: No such file or directory 
  4.  
  5. grep: /usr/include/php/Zend/zend_modules.h: No such file or directory 
  6.  
  7. grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory 
  8.  
  9. Configuring for
  10.  
  11. PHP Api Version:         
  12.  
  13. Zend Module Api No:      
  14.  
  15. Zend Extension Api No: 

缺少PHP的header头文件,再一看/usr/include文件夹根本不存在敲出如下命令:

  1. $ xcode-select --install 
  2.  
  3. xcode-select: note: install requested for command line developer tools 

如果phpize还是无效、执行下列命令安装header头文件SDK即可:

  1. $ cd /Library/Developer/CommandLineTools/Packages/$ open macOS_SDK_headers_for_macOS_10.14.pkg 
  2.  
  3. ./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

Tags: mac php7.1 memcache

分享到: