apcu_key_info
(No version information available, might only be in Git)
apcu_key_info — キャッシュのキーに関する詳細な情報を取得する
パラメータ
key
-
キャッシュのキー
戻り値
キャッシュのキーに関する、詳細な情報を含む配列を返します。
キーが存在しない場合、null
を返します。
例
例1 A apcu_key_info() の例
<?php
apcu_add('a','b');
var_dump(apcu_key_info('a'));
?>
上の例の出力は以下となります。
array(7) { ["hits"]=> int(0) ["access_time"]=> int(1606701783) ["mtime"]=> int(1606701783) ["creation_time"]=> int(1606701783) ["deletion_time"]=> int(0) ["ttl"]=> int(0) ["refs"]=> int(0) }
参考
- apcu_store() - 変数をデータ領域にキャッシュする
- apcu_fetch() - 格納されている変数をキャッシュから取得する
- apcu_delete() - 格納されている変数をキャッシュから取り除く
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google