CachingIterator::getCache

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

CachingIterator::getCacheLit le contenu du cache

Description

public CachingIterator::getCache(): array

Lit le contenu du cache.

Note:

Le drapeau CachingIterator::FULL_CACHE doit être utilisé.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Un tableau contenant les éléments du cache.

Erreurs / Exceptions

Lance une exception BadMethodCallException lorsque le drapeau CachingIterator::FULL_CACHE n'est pas utilisé.

Exemples

Exemple #1 Exemple avec 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());
?>

L'exemple ci-dessus va afficher :

array(2) {
  [0]=>
  int(1)
  [1]=>
  int(2)
}
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top