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的遇到这个报错
- $ 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
Tags: mac php7.1 memcache
相关文章
- ·mac php netbeans xdebug 配置方法详解(2014-08-25)
- ·Mac下搭建PHP 开发环境的教程(详细步骤)(2020-01-26)
- ·php memcache安装与注意事项(2013-11-29)
- ·Drupal7中配置Memcache方法详解(2014-01-08)
- ·MEMCACHE做为PHP的SESSION HANDLER(2014-02-28)
- ·php5.3安装libmemcached 扩展方法与简单实例(2014-08-25)
- ·PHP5.4.X与Memcache不兼容问题解决方案(2014-08-26)
- ·怎么在Windows下安装Memcache(2014-08-26)
- ·windows/linux/php中memcached.exe的安装与配置(2014-09-11)
- ·php5.3安装libmemcached扩展的教程(2015-04-14)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)