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