update : 2015.11.03
php.shukuma.com검색:
|
apc_cas(PECL apc >= 3.1.1) apc_cas — Updates an old value with a new value 설명
bool apc_cas
( string
$key
, int $old
, int $new
)
apc_cas() updates an already existing integer value if the
인수
반환값
성공 시 예제Example #1 apc_cas() example
<?php 위 예제의 출력 예시: $foobar = 2 $foobar == 1 ? 2 : 1 = fail $foobar == 2 ? 1 : 2 = ok $foobar = 1 $f__bar == 1 ? 2 : 1 = fail $perfection == 2 ? 1 : 2 = epic fail $foobar = 1 참고
|