|
Ds\Map::toArrayConverts the map to an array. Description
public array Ds\Map::toArray
( void
)
Converts the map to an array. Caution
Maps where non-scalar keys are 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
<?php The above example will output something similar to: array(3) { ["a"]=> int(1) ["b"]=> int(2) ["c"]=> int(3) } |