Memcached
PHP Manual

Memcached::replace

(PECL memcached >= 0.1.0)

Memcached::replaceReplace the item under an existing key

说明

public bool Memcached::replace ( string $key , mixed $value [, int $expiration ] )

Memcached::replace() is similar to Memcached::set(), but the operation fails if the key does not exist on the server.

参数

key

用于存储值的键名。

value

存储的值

expiration

到期时间,默认为 0。 更多 信息请参见到期时间

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE. The Memcached::getResultCode() will return Memcached::RES_NOTSTORED if the key does not exist.

参见


Memcached
PHP Manual