La función SplObjectStorage::next() es una función incorporada en PHP que se usa para pasar a la siguiente entrada de almacenamiento.
Sintaxis:
void SplObjectStorage::next()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función SplObjectStorage::next() en PHP:
Programa 1:
<?php // Create an empty SplObjectStorage $str = new SplObjectStorage(); $obj = new StdClass; $obj2 = new StdClass; // Use attach() function to add object $str->attach($obj, "GFG"); $str->attach($obj2, "Geeks"); $str->rewind(); // Get the current data var_dump($str->getInfo()); // Move on to next object $str->next(); // Print result of next entry var_dump($str->getInfo()); ?>
Producción:
string(3) "GFG" string(5) "Geeks"
Programa 2:
<?php // Create an Empty SplObjectStorage $str = new SplObjectStorage(); $obj1 = new StdClass; $obj2 = new StdClass; $obj3 = new StdClass; $obj4 = new StdClass; // Use attach() function to add object $str->attach($obj1, "GeksforGeeks"); $str->attach($obj2, "GFG"); $str->attach($obj3); $str->attach($obj4, "DSA"); $str->rewind(); // Iterate and print data on each index while($str->valid()) { // Get index $index = $str->key(); $object = $str->current(); $data = $str->getInfo(); var_dump($index, $data); // Moving each time next entry $str->next(); } ?>
Producción:
int(0) string(12) "GeksforGeeks" int(1) string(3) "GFG" int(2) NULL int(3) string(3) "DSA"
Referencia: https://www.php.net/manual/en/splobjectstorage.next.php