码迷,mamicode.com
首页 > Windows程序 > 详细

window下php5安装redis扩展

时间:2017-09-26 13:37:17      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:extension   run   get   链接   pac   name   echo   输出   天都   

最近想在5.6版本的开发环境装一下redis的扩展,结果找了半天都是失效链接,特此做下备份

https://pecl.php.net/package/redis/2.2.7/windows

技术分享

然后,把php_redis.dll放到php的ext文件夹下

 技术分享

 

最后在php.ini加上

extension=php_redis.dll

  

重启环境运行下面代码,前提是已启动redis

技术分享

$redis = new Redis();
$redis->connect(‘127.0.0.1‘, 6379);
echo "Connection to server sucessfully";
//查看服务是否运行
echo "Server is running: " . $redis->ping();

执行脚本,输出结果为:

Connection to server sucessfully
Server is running: PONG

 

//连接本地的 Redis 服务
   $redis = new Redis();
   $redis->connect(‘127.0.0.1‘, 6379);
   echo "Connection to server sucessfully";
   //设置 redis 字符串数据
   $redis->set("tutorial-name", "Redis tutorial");
   // 获取存储的数据并输出
   echo "Stored string in redis:: " . $redis->get("tutorial-name");

执行脚本,输出结果为:

Connection to server sucessfully
Stored string in redis:: Redis tutorial

 

window下php5安装redis扩展

标签:extension   run   get   链接   pac   name   echo   输出   天都   

原文地址:http://www.cnblogs.com/cxscode/p/7596252.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!