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