PHP - Funzione Ds \ Queue :: toArray ()
La funzione Ds \ Queue :: toArray () può convertire la coda in un array.
Sintassi
public array Ds\Queue::toArray( void )
La funzione Ds \ Queue :: toArray () non ha parametri.
La funzione Ds \ Queue :: toArray () può restituire un array contenente tutti i valori nello stesso ordine di queue.
Esempio
<?php
$queue = new \Ds\Queue();
$queue->push("Tutorials", 1);
$queue->push("Point", 2);
$queue->push("India", 3);
echo "The equivalent array is: \n";
print_r($queue->toArray());
?>