🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## ttl, pttl ##### *Description* Returns the time to live left for a given key, in seconds. If the key doesn't exist, `<span class="calibre12">FALSE</span>` is returned. pttl returns a time in milliseconds. 取得一个KEY已经存在的时间。如果这个KEY不存在,则返回FLASE。PTTL使用毫秒为单位。 ##### *Parameters* *Key*: key ##### *Return value* Long, the time left to live in seconds. ##### *Example* ``` <pre class="calibre9">$redis->ttl('key'); ```