|
Ds\Set::toArrayConverts the set to an array. Description
public array Ds\Set::toArray
( void
)
Converts the set to an array.
ParametersThis function has no parameters. Return ValuesAn array containing all the values in the same order as the set. ExamplesExample #1 Ds\Set::toArray example
<?php The above example will output something similar to: array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) } |