$dll = new SplDoublyLinkedList();
$dll->push(2);
$dll->push(3);
$dll->unshift(5); // add 5 beginning of the array
$dll->rewind();
while($dll->valid()){
echo $dll->current()."\n";
$dll->next();
}
Output
5
2
3
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SplDoublyLinkedList::unshift — Antepone un elemento a la lista doblemente enlazada
Antepone el valor dado por value
al inicio de la lista doblemente enlazada.
value
El valor a anteponer.
No devuelve ningún valor.
$dll = new SplDoublyLinkedList();
$dll->push(2);
$dll->push(3);
$dll->unshift(5); // add 5 beginning of the array
$dll->rewind();
while($dll->valid()){
echo $dll->current()."\n";
$dll->next();
}
Output
5
2
3