企业🤖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 */ ```