CachingIterator::getCache

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

CachingIterator::getCache检索缓存内容

说明

public CachingIterator::getCache(): array

检索缓存的内容。

注意:

必须使用 **CachingIterator::FULL_CACHE** 标志。

参数

此函数没有参数。

返回值

包含缓存项的 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)
}

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top