(PECL ds >= 1.0.0)
Ds\Collection::toArray — 将集合转换为 数组
将集合转换为 数组.
注意: 目前不支持强制转换为 数组.
注意:
目前不支持强制转换为 数组.
此函数没有参数。
一个 数组,包含集合中的所有值,顺序与集合相同。
示例 #1 Ds\Collection::toArray() 示例
<?php$collection = new \Ds\Vector([1, 2, 3]);var_dump($collection->toArray());?>
上面的示例将输出类似于以下内容
array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }