在线文档教程
PHP
数据结构 | Data Structures

Ds\Collection::toArray

Ds\Collection::toArray

(PECL ds >= 1.0.0)

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

描述

abstract public array Ds\Collection::toArray ( void )

将集合转换为数组。

注意:现在还不支持投射到数组。

参数

该功能没有参数。

Return Values

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

例子

示例#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) }

← Ds\Collection::isEmpty

Hashable →