|
update : 2015.11.03
php.shukuma.com검색:
|
Memcached::set(PECL memcached >= 0.1.0) Memcached::set — Store an item 설명
Memcached::set() stores the
The value can be any valid PHP type except for resources, because those
cannot be represented in a serialized form. If the
반환값
성공 시 예제
Example #1 Memcached::set() example
<?php위 예제의 출력 예시:
int(99)
string(15) "a simple string"
array(2) {
[0]=>
int(11)
[1]=>
int(12)
}
object(stdClass)#1 (0) {
}
참고
|