|
Ds\Map::toArrayConverts the map to an array 説明public array Ds\Map::toArray()
Converts the map to an array. 警告
Maps where non-scalar keys are can't be converted to an array. 警告
An array will treat all numeric keys as integers,
eg.
パラメータこの関数にはパラメータはありません。 戻り値An array containing all the values in the same order as the map. 例例1 Ds\Map::toArray example
上の例の出力は、 たとえば以下のようになります。 array(3) { ["a"]=> int(1) ["b"]=> int(2) ["c"]=> int(3) } |