LiCheng" />
当前位置: 代码迷 >> PHP >> LiCheng
  详细解决方案
热度:348   发布时间:2016-04-28 17:38:56.0
windows平台安装php_memcache模块
 \<\/p\>/g,""); }); } $("#cnblogs_post_body").html(function(){ return $(this).html().replace(/\ \<\/p\>/g,""); }); prettyPrint(); setTimeout(comment_remove,1000);setTimeout(comment_remove,2000); setTimeout(prettyPrint,1000);setTimeout(prettyPrint,2000); //置顶按钮显示/隐藏实现 $(window).scroll(function(){ var w_height = $(window).height();//浏览器高度 var height=$(document).height(); var scroll_top = $(document).scrollTop();//滚动条到顶部的垂直高度 $("#goto-top").css("top",40+"px"); if(scroll_top > w_height){ $("#goto-top").fadeIn(500); }else{ $("#goto-top").fadeOut(500); } }); //置顶 $("#goto-top").click(function(e){ e.preventDefault(); $(document.documentElement).animate({ scrollTop: 0 },200); //支持chrome $(document.body).animate({ scrollTop: 0 },200); }); });

windows平台安装php_memcache模块

要求

    • 必备知识

      熟悉基本编程环境搭建。

    • 运行环境

      windows 7(64位);
      php-5.3;
      memcached-1.2.6

    • 下载地址

      环境下载

什么是PHP Memcache模块

Memcache模块提供了于memcached方便的面向过程及面向对象的接口,memcached是为了降低动态web应用 从数据库加载数据而产生的一种常驻进程缓存产品。

下载

这里需要注意一下版本号,根据个人情况而定,我下的是php_memcache-3.0.8-5.3-ts-vc9-x86.zip

2015-04-04_171739

用phpinfo()函数查看当前PHP版本的信息

安装扩展

将下载下来的压缩包解压,然后将 php_memcache.dll模块拷贝到PHP的ext文件夹内。

修改php.ini文件

引入如下代码

2015-04-04_212335

测试

重启web服务器。

2015-04-04_212558

在memcache.php文件中输入如下代码:

<?php$memcache = new Memcache;$memcache->connect('127.0.0.1',11211);$memcache->set('key','hello memcache!');$out = $memcache->get('key');echo $out;?>

在浏览器中进行测试,这里需要注意的是memcache服务必需在启动状态下哦。关于memcache服务在windows平台的安装,可以参考我之前写的一篇文章哦。

2015-04-04_213558

如以上文章或链接对你有帮助的话,别忘了在文章结尾处轻轻点击一下 “还不错”按钮或到页面右下角点击 “赞一个” 按钮哦。你也可以点击页面右边“分享”悬浮按钮哦,让更多的人阅读这篇文章。

作者:Li-Cheng
由于本人水平有限,文章在表述和代码方面如有不妥之处,欢迎批评指正。留下你的脚印,欢迎评论哦。你也可以关注我,一起学习哦!
o_ap3ft4hhp05s2v2y13 (1)

(^_^)如果您觉得此文对您有帮助的话,打个赏喝个咖啡吧,么么哒(^_^)

2楼Li-Cheng
@博客园团队 我知道你们硬盘容量大![黑线]
1楼Li-Cheng
我认输了!@博客园团队
  相关解决方案