Note that $success is set to false if no cached entry with given key exists.
So "failure" tells you if the cache was hit or not.
(PECL apcu >= 4.0.0)
apcu_fetch — 格納されている変数をキャッシュから取得する
成功した場合に格納されていた変数 (あるいは配列)、失敗した場合に false
を返します。
バージョン | 説明 |
---|---|
PECL apcu 3.0.17 |
success パラメータが追加されました。
|
例1 apcu_fetch() の例
<?php
$bar = 'BAR';
apcu_store('foo', $bar);
var_dump(apcu_fetch('foo'));
?>
上の例の出力は以下となります。
string(3) "BAR"
Note that $success is set to false if no cached entry with given key exists.
So "failure" tells you if the cache was hit or not.