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