时间:2021-07-01 10:21:17 帮助过:5人阅读
一、先下载redis扩展:
php_igbinary.dll
php_redis.dll
下载链接:
http://pan.baidu.com/s/1c0nihUw
二、在Apache下的php.ini中添加
extension=php_igbinary.dll
extension=php_redis.dll
三、重启Apache并测试
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$res = $redis->set('hello','kitty');
var_dump($res);
var_dump($redis->get('hello'));
echo $redis->get('hello');
结果:
boolean true
string 'kitty' (length=5)
kitty
以上就介绍了PHP_Redis扩展,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。