💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
## 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 */ ```