(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) }