Ds\Set::toArray

(PECL ds >= 1.0.0)

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

描述

public Ds\Set::toArray(): array

将集合转换为 数组.

注意:

尚未支持强制转换为 数组.

参数

此函数没有参数。

返回值

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

示例

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

用户贡献的注释

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