💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## rPop ##### *Description* Returns and removes the last element of the list. 返回LIST底部(右侧)的VALUE,并且从LIST中把该VALUE弹出。 ##### *Parameters* *key* ##### *Return value* *STRING* if command executed successfully *BOOL*`<span class="calibre12">FALSE</span>` in case of failure (empty list) 取得VALUE成功,返回TURE。如果是一个空LIST则返回FLASE。 ##### *Example* ``` <pre class="calibre9">$redis->rPush('key1', 'A'); $redis->rPush('key1', 'B'); $redis->rPush('key1', 'C'); /* key1 => [ 'A', 'B', 'C' ] */ $redis->rPop('key1'); /* key1 => [ 'A', 'B' ] */ ```