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.

참고

add a note add a note

User Contributed Notes

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