(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) }