|
Ds\Map::toArrayConverts the map to an array Descriptionpublic array Ds\Map::toArray()
Converts the map to an array. Caution
Maps with non-scalar keys can't be converted to an array. Caution
An array will treat all numeric keys as integers,
eg.
ParametersThis function has no parameters. Return ValuesAn array containing all the values in the same order as the map. ExamplesExample #1 Ds\Map::toArray example The above example will output something similar to:
array(3) {
["a"]=>
int(1)
["b"]=>
int(2)
["c"]=>
int(3)
}
|