windows环境下php配置memcache的具体操作步骤

前端之家收集整理的这篇文章主要介绍了windows环境下php配置memcache的具体操作步骤前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先要安装好PHP和apache环境。

我用的是wamp整合的套件

PHP 5.2.8
apache 2.2.1.1
这些都准备好了后,
就到 memcache 官网去下载 windows 下的 memcache.exe 这个程序

然后把他放在 c:\memcache 目录下
打开 cmd 命令 输入
cd c:\memcache

安装

memcache.exe -p install

安装完成后

memcache.exe -p start

成功开启 memcache后

就到 PHP/ext 目录下 把 PHP_memcache.dll 放到里面

然后在 PHP 目录下的 PHP.ini 增加一段内容
extension=PHP_memcache.dll

加完之后,重启 apache

然后 在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!

原文链接:https://www.f2er.com/windows/26349.html

猜你在找的Windows相关文章