$redis->zadd('test',999,'hello world!');127.0.0.1:6379> zrange test 0 -1 withscores
1) "hello world!"
2) "999"设到999以上  score一直就是1了$redis->zadd('test',1000,'hello world!');1) "hello world!"
2) "1"但是不通过php, 直接在redis命令下 zadd test 10000 'hello world!'就会正常,求解