apcu_fetch
(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"
+add a note
User Contributed Notes 1 note
orlando at thoeny dot dev ¶
1 year ago
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.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google