NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
## 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 */ ```