NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
## zDelete, zRem ##### *Description* Deletes a specified member from the ordered set. 从有序集合中删除指定的成员。 ##### *Parameters* *key* *member* ##### *Return value* *LONG* 1 on success, 0 on failure. ##### *Example* ``` <pre class="calibre16">$redis->zAdd('key', 0, 'val0'); $redis->zAdd('key', 2, 'val2'); $redis->zAdd('key', 10, 'val10'); $redis->zDelete('key', 'val2'); $redis->zRange('key', 0, -1); /* array('val0', 'val10') */ ``` ##