CachingIterator::getCache
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
CachingIterator::getCache — キャッシュの内容を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
キャッシュの内容を含む配列を返します。
エラー / 例外
CachingIterator::FULL_CACHE
フラグを使っていない場合に
BadMethodCallException をスローします。
例
例1 CachingIterator::getCache() の例
<?php
$iterator = new ArrayIterator(array(1, 2, 3));
$cache = new CachingIterator($iterator, CachingIterator::FULL_CACHE);
$cache->next();
$cache->next();
var_dump($cache->getCache());
$cache->next();
var_dump($cache->getCache());
?>
上の例の出力は以下となります。
array(2) { [0]=> int(1) [1]=> int(2) } array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }
+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