Memcached::touch

(PECL memcached >= 2.0.0)

Memcached::touch设置项目的新的过期时间

描述

public Memcached::touch(string $key, int $expiration = 0): bool

Memcached::touch() 为给定键设置新的过期值。

参数

key

存储值的键。

expiration

过期时间,默认为 0。有关更多信息,请参阅 过期时间

返回值

成功时返回 true,失败时返回 false。如果需要,请使用 Memcached::getResultCode()

参见

添加注释

用户贡献的注释 2 个注释

Dehumanizer
9 年前
使用 PHP 5.4.41 和 memcached 1.4.24,它在 ASCII 模式下也能工作。
Pramod Patil
9 年前
这仅在启用二进制协议时受支持。
$obj = new Memcached();
$obj->setOption(\Memcached::OPT_BINARY_PROTOCOL, true);
To Top