La función SplDoublyLinkedList::add() es una función incorporada en PHP que se usa para agregar un nuevo valor en el índice dado.
Sintaxis:
void SplDoublyLinkedList::add( $index, $newval )
Parámetros: contiene dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $index: Contiene el valor del índice donde se va a insertar el nuevo elemento.
- $newval: contiene el elemento que se insertará o agregará.
Valor devuelto: No devuelve ningún valor.
Los siguientes programas ilustran la función SplDoublyLinkedList::add() en PHP:
Programa 1:
<?php // Declare an empty SplDoublyLinkedList $list = new \SplDoublyLinkedList; // Use SplDoublyLinkedList::add() function to // add elements to the SplDoublyLinkedList $list->add(0, 1); $list->add(1, "Geeks"); $list->add(2, "G"); $list->add(3, 10); print_r($list); ?>
Producción:
SplDoublyLinkedList Object ( [flags:SplDoublyLinkedList:private] => 0 [dllist:SplDoublyLinkedList:private] => Array ( [0] => 1 [1] => Geeks [2] => G [3] => 10 ) )
Programa 2:
<?php // Declare an empty SplDoublyLinkedList $list = new \SplDoublyLinkedList; // Use SplDoublyLinkedList::add() function to // add elements to the SplDoublyLinkedList $list->add(0, 30); $list->add(1, 20); $list->add(2, 30); $list->add(3, "Geeks"); $list->add(4, 'G'); print_r($list); ?>
Producción:
SplDoublyLinkedList Object ( [flags:SplDoublyLinkedList:private] => 0 [dllist:SplDoublyLinkedList:private] => Array ( [0] => 30 [1] => 20 [2] => 30 [3] => Geeks [4] => G ) )
Referencia: https://www.php.net/manual/en/spldoublylinkedlist.add.php