PHP 8.3.4 Released!

Memcached::replace

(PECL memcached >= 0.1.0)

Memcached::replace替换已存在 key 下的元素

说明

public Memcached::replace(string $key, mixed $value, int $expiration = 0): bool

Memcached::replace()Memcached::set() 类似,但是如果 服务端不存在 key,操作将失败。

参数

key

用于存储值的键名。

value

存储的值。

expiration

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

返回值

成功时返回 true, 或者在失败时返回 false。 如果 key 不存在,Memcached::getResultCode() 返回 Memcached::RES_NOTSTORED

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top