update : 2015.11.03
php.shukuma.com검색:
|
wincache_ucache_set(PECL wincache >= 1.1.0) wincache_ucache_set — Adds a variable in user cache and overwrites a variable if it already exists in the cache 설명Adds a variable in user cache. Overwrites a variable if it already exists in the cache. The added or updated variable remains in the user cache unless its time to live expires or it is deleted by using wincache_ucache_delete() or wincache_ucache_clear() functions. 인수
반환값
If
If
예제
Example #1 wincache_ucache_set() with
<?php 위 예제의 출력: bool(true) string(3) "BAR" bool(true) string(3) "BAR1"
Example #2 wincache_ucache_set() with
<?php 위 예제의 출력: array(0) {} array(0) {} string(1) "6" 참고
|