返回集合中的所有成员吧
<?php//连接本地的 Redis 服务$redis = new Redis();$redis->connect('10.1.3.15', 6379);$redis->auth('kuaicdn_redis_passwd');$redis->flushAll();$ret['exec'][]=$redis->sAdd('gather_test','1111','22222','33333');$ret['src'][]=$redis->sMembers('gather_test');print_r($ret);?>
