Php-Redis 问题
Php-Redis Issue
我已经安装了 Redis,Php 和 Php-Redis,现在当我 运行 这个下面的程序我正在获取
<?php
//Connecting to Redis server on localhost
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
echo "Connection to server sucessfully";
//check whether server is running or not
echo "Server is running: "+ $redis->ping();
?>
理想的输出应该是
连接服务器成功
服务器是 运行ning: PONG
但是我得到的输出是
连接服务器成功
问题出在哪里?
你应该改变这个:
echo "Server is running: "+ $redis->ping();
对此:
echo "Server is running: " . $redis->ping();
因为.运算符用于串联,+运算符用于加法。
我已经安装了 Redis,Php 和 Php-Redis,现在当我 运行 这个下面的程序我正在获取
<?php
//Connecting to Redis server on localhost
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
echo "Connection to server sucessfully";
//check whether server is running or not
echo "Server is running: "+ $redis->ping();
?>
理想的输出应该是
连接服务器成功 服务器是 运行ning: PONG
但是我得到的输出是
连接服务器成功
问题出在哪里?
你应该改变这个:
echo "Server is running: "+ $redis->ping();
对此:
echo "Server is running: " . $redis->ping();
因为.运算符用于串联,+运算符用于加法。