auth 命令/方法/函数

Description

Authenticate the connection using a password. Warning: The password is sent in plain-text over the network.

使用PASSWORD验证链接。警告:PASSWD以明码的形式在网络中传输。

当redis配置了密码认证的时候(去了解redis配置密码的方法),需要通过此方法验证授权。


Parameters

STRING: password

字符串:密码


Return value

BOOL: TRUE if the connection is authenticated, FALSE otherwise.


Example

$redis->auth('foobared');