PHP Conference Japan 2024

Collection 接口

(PECL ds >= 1.0.0)

简介

Collection 是基础接口,涵盖了该库中所有数据结构的公共功能。它保证所有结构都是可遍历的、可计数的,并且可以使用 json_encode() 转换为 JSON。

接口概要

interface Ds\Collection extends Countable, IteratorAggregate, JsonSerializable {
/* 方法 */
public clear(): void
public isEmpty(): bool
public toArray(): array
/* 继承的方法 */
}

变更日志

版本 描述
PECL ds 1.4.0 Collection 现在实现 IteratorAggregate,而不仅仅是 Traversable。(此更改在 1.4.1 中添加到 polyfill。)

目录

添加注释

用户贡献注释

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