exists 命令/方法/函数

Description

Verify if the specified key exists.

验证一个指定的KEY是否存在。


Parameters

key


Return value

BOOL: If the key exists, return TRUE, otherwise return FALSE.

BOOL:如果key存在,返回true,否则返回false。


Examples

$redis->set('key', 'value');

$redis->exists('key'); /*  TRUE */

$redis->exists('NonExistingKey'); /* FALSE */