(PHP 5 >= 5.2.0, PHP 7, PHP 8)
CachingIterator::getCache — 检索缓存内容
此函数没有参数。
包含缓存项的array。
当未使用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)
}