PHP - DS 集合函数


Collection 是一个基本接口,涵盖了该库中所有数据结构的通用功能。它保证所有结构都是可遍历、可数的,并且可以使用 json_encode() 函数转换为 json。

界面简介

Ds\Collection implements Traversable, Countable, JsonSerializable {
   /* Methods */
   abstract public void clear ( void )
   abstract public Ds\Collection copy ( void )
   abstract public bool isEmpty ( void )
   abstract public array toArray ( void )
}

先生编号 功能说明
1

Ds\Collection::clear()

Ds\Collection::clear() 函数可以删除所有值。

2

Ds\Collection::copy()

Ds\Collection::copy() 函数可以返回集合的浅表副本。

3

Ds\Collection::isEmpty()

Ds\Collection::isEmpty() 函数可以返回集合是否为空。

4

Ds\Collection::toArray()

Ds\Collection::toArray() 函数可以将集合转换为数组。

php_function_reference.htm