ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## zScore ##### *Description* Returns the score of a given member in the specified sorted set. 返回key对应的有序集合中member的score值。如果member在有序集合中不存在,那么将会返回nil。 ##### *Parameters* *key* *member* ##### *Return value* *Double* ##### *Example* ``` <pre class="calibre16">$redis->zAdd('key', 2.5, 'val2'); $redis->zScore('key', 'val2'); /* 2.5 */ ```