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

Ds\Collection::clear

Ds\Collection::clear

(PECL ds >= 1.0.0)

Ds \ Collection :: clear - 删除所有值。

描述

abstract public void Ds\Collection::clear ( void )

删除集合中的所有值。

参数

该功能没有参数。

返回值

没有值返回。

例子

示例 #1 Ds\Collection::clear()示例

<?php $collection = new \Ds\Vector([1, 2, 3] print_r($collection $collection->clear( print_r($collection ?>

上面的例子会输出类似于:

Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Vector Object ( )

← Collection

Ds\Collection::copy →