La función Ds\Set::toArray() de la clase Ds\Set en PHP es una función incorporada que se utiliza para convertir el Conjunto en una array asociativa. Esto no modifica el Conjunto real. Este método devuelve una array con valores del Conjunto sin cambiar el orden de los elementos.
Sintaxis:
array public Ds\Set::toArray ( void )
Parámetro: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve una array asociativa generada al convertir el conjunto.
Los siguientes programas ilustran la función Ds\Set::toArray() :
Programa 1:
<?php // Declare a set $set = new \Ds\Set([1, 2, 3, 4, 5]); // Corresponding array is echo "Array is:\n"; print_r($set->toArray()); ?>
Producción:
Array is: Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )
Programa 2:
<?php // Declare a set $set = new \Ds\Set(["Geeks", "for", "Geeks"]); // Corresponding array is echo "Array is:\n"; print_r($set->toArray()); ?>
Producción:
Array is: Array ( [0] => Geeks [1] => for )
Referencia: http://php.net/manual/en/ds-set.toarray.php