La función SplDoublyLinkedList::valid() es una función incorporada en PHP que se usa para comprobar si la lista doblemente enlazada contiene más Nodes o no.
Sintaxis:
bool SplDoublyLinkedList::valid( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: Esta función devuelve VERDADERO si la lista doblemente enlazada contiene más Nodes y FALSO en caso contrario.
Los siguientes programas ilustran la función SplDoublyLinkedList::valid() en PHP:
Programa 1:
<?php // Declare an empty SplDoublyLinkedList $list = new SplDoublyLinkedList(); // Use SplDoublyLinkedList::push() function to // add elements to the SplDoublyLinkedList $list->push(1); $list->push(2); $list->push(3); $list->push(8); $list->push(5); $list->rewind(); for($i = 0; $i < 5; $i++) { if($list->valid()) echo $list->current() . " "; $list->next(); } ?>
Producción:
1 2 3 8 5
Programa 2:
<?php // Declare an empty SplDoublyLinkedList $list = new SplDoublyLinkedList(); // Use SplDoublyLinkedList::add() function // to add the element into the list $list->add(0, "Welcome"); $list->add(1, "to"); $list->add(2, "GeeksforGeeks"); $list->add(3, "A"); $list->add(4, 'Computer'); $list->add(5, "Science"); $list->add(6, 'Portal'); $list->rewind(); for($i = 0; $i < 7; $i++) { if($list->valid()) echo $list->current() . " "; $list->next(); } ?>
Producción:
Welcome to GeeksforGeeks A Computer Science Portal
Referencia: https://www.php.net/manual/en/spldoublylinkedlist.valid.php