欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

phpredis模块安装好了,new redis不起作用

程序员文章站 2022-06-14 08:30:48
...
connect('localhost', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: "+ $redis->ping();
?>

phpredis模块安装好了,new redis不起作用

phpredis模块安装好了,new redis不起作用

phpredis模块安装好了,new redis不起作用

上面是我的代码和运行后的截图,我不明白是什么原因导致的,拜托各位指点指点了。

回复内容:

connect('localhost', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: "+ $redis->ping();
?>

phpredis模块安装好了,new redis不起作用

phpredis模块安装好了,new redis不起作用

phpredis模块安装好了,new redis不起作用

上面是我的代码和运行后的截图,我不明白是什么原因导致的,拜托各位指点指点了。

你打印一下$redis->connect()的返回值,看看是不是真的连上了,
如果连上了,就set一个值,在redis-cli里面查看有没有真的设置上。

相关标签: php redis