window下安装php7的memcache扩展
Posted cxscode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window下安装php7的memcache扩展相关的知识,希望对你有一定的参考价值。
安装memcache:http://www.runoob.com/memcached/memcached-connection.html
1.4.4
c:\\memcached\\memcached.exe -d install
c:\\memcached\\memcached.exe -d start
c:\\memcached\\memcached.exe -d stop
1.4.5
schtasks /create /sc onstart /tn memcached /tr "\'c:\\memcached\\memcached.exe\' -m 512"
telnet HOST PORT
今天想在window下安装php7的memcache扩展,结果发现php_memcache.dll的官方编译出来的版本支持到PHP 5.6就停了,找了半天才在外国人的网站找到
https://stackoverflow.com/questions/34952502/memcache-for-php7-on-windows,
git下载地址:https://github.com/nono303/PHP7-memcache-dll
百度网盘链接:http://pan.baidu.com/s/1ge9MvEN 密码:zwoh
根据自己的php版本下载
下载解压后,
就到 php/ext 目录下 把 php_memcache.dll 放到里面
然后在 php 目录下的 php.ini 增加一段内容
extension=php_memcache.dll
加完之后,重启 apache或者nginx
然后 在php页面输出phpinfo();
检查 memcache 是否成功加载了。
如果成功加载了 ,就可以 在一个php页面做 memcache测试了
<?php //phpinfo(); $memcache = new Memcache; $memcache->connect(\'127.0.0.1\',11211) or die(\'shit\'); $memcache->set(\'key\',\'hello memcache!\'); $out = $memcache->get(\'key\'); echo $out;
成功的话会输出
hello memcache!
以上是关于window下安装php7的memcache扩展的主要内容,如果未能解决你的问题,请参考以下文章
在 Windows 10 64 下安装 Memcached,安装 PHP 7.0.22 的 Memcache 扩展