企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## lTrim, listTrim ##### *Description* Trims an existing list so that it will contain only a specified range of elements. 它将截取LIST中指定范围内的元素组成一个新的LIST并指向KEY。简短解说就是截取LIST。 这个可不是JS,或者PHP中清空空格的意思。 ##### *Parameters* *key* *start* *stop* ##### *Return value* *Array* *Bool* return `<span class="calibre12">FALSE</span>` if the key identify a non-list value. ##### *Example* ``` <pre class="calibre16">$redis->rPush('key1', 'A'); $redis->rPush('key1', 'B'); $redis->rPush('key1', 'C'); $redis->lRange('key1', 0, -1); /* array('A', 'B', 'C') */ $redis->lTrim('key1', 0, 1); $redis->lRange('key1', 0, -1); /* array('A', 'B') */ ``` ##