📜  PHP | Ds\Collection clear()函数

📅  最后修改于: 2022-05-13 01:56:55.002000             🧑  作者: Mango

PHP | Ds\Collection clear()函数

Ds\Collection::clear()函数是PHP中的一个内置函数,用于从集合中删除所有值。

句法:

Ds\Collection::clear( void )

参数:此函数不接受任何参数。

返回值:此函数不返回任何值。

下面的程序说明了PHP中的 Ds\Collection::clear()函数:

示例 1:

clear();
  
// Display the collection element
print_r($collection);
  
?>

输出:

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

示例 2:

clear();
  
// Display the collection element
var_dump($collection);
  
?>

输出:

object(Ds\Vector)#1 (6) { 
    [0]=> int(10) 
    [1]=> int(15) 
    [2]=> int(21) 
    [3]=> int(13) 
    [4]=> int(16) 
    [5]=> int(18) 
} 
object(Ds\Vector)#1 (0) { 

} 

参考: http: PHP。 PHP