PHP | Función CachingIterator getCache()

La función CachingIterator::getCache() es una función incorporada en PHP que se usa para recuperar el contenido del caché.

Sintaxis:

array CachingIterator::getCache( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve una array que contiene los elementos de caché.

Los siguientes programas ilustran la función CachingIterator::getCache() en PHP:

Programa 1:

<?php
    
// Declare an array
$arr = array('G', 'e', 'e', 'k', 's');
    
// Create a new CachingIterator
$cachIt = new CachingIterator(
    new ArrayIterator($arr), 
    CachingIterator::FULL_CACHE
);
   
// Move to next position
$cachIt->next();
  
// Display the content of cache
var_dump($cachIt->getCache());
  
// Move to next position
$cachIt->next();
  
// Display the content of cache
var_dump($cachIt->getCache());
    
?>
Producción:

array(1) {
  [0]=>
  string(1) "G"
}
array(2) {
  [0]=>
  string(1) "G"
  [1]=>
  string(1) "e"
}

Programa 2:

<?php
    
// Declare an ArrayIterator
$arr = array(
    "a" => "Geeks",
    "b" => "for",
    "c" => "Geeks",
    "d" => "Computer",
    "e" => "Science",
    "f" => "Portal"
);
  
// Create a new CachingIterator
$cachIt = new CachingIterator(
    new ArrayIterator($arr), 
    CachingIterator::FULL_CACHE
);
  
// Move to next position
$cachIt->next();
$cachIt->next();
$cachIt->next();
  
// Display the content of cache
var_dump($cachIt->getCache());
  
// Move to next position
$cachIt->next();
  
// Display the content of cache
var_dump($cachIt->getCache());
    
?>
Producción:

array(3) {
  ["a"]=>
  string(5) "Geeks"
  ["b"]=>
  string(3) "for"
  ["c"]=>
  string(5) "Geeks"
}
array(4) {
  ["a"]=>
  string(5) "Geeks"
  ["b"]=>
  string(3) "for"
  ["c"]=>
  string(5) "Geeks"
  ["d"]=>
  string(8) "Computer"
}

Referencia: https://www.php.net/manual/en/cachingiterator.getcache.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *