Ds\Collection::toArray

(PECL ds >= 1.0.0)

Ds\Collection::toArray 将集合转换为 数组

描述

public Ds\Collection::toArray(): array

将集合转换为 数组.

注意:

目前不支持强制转换为 数组.

参数

此函数没有参数。

返回值

一个 数组,包含集合中的所有值,顺序与集合相同。

示例

示例 #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)
}
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top