>백엔드 개발 >PHP 튜토리얼 >phpredis模块安装好了,new redis不起作用

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

WBOY
WBOY원래의
2016-06-06 20:16:361303검색

<code><?php //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('localhost', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: "+ $redis->ping();
?></code>

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

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

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

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

回复内容:

<code><?php //Connecting to Redis server on localhost
   $redis = new Redis();
   $redis->connect('localhost', 6379);
   echo "Connection to server sucessfully";
   //check whether server is running or not
   echo "Server is running: "+ $redis->ping();
?></code>

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

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

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

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

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.