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