(PECL ds >= 1.0.0)
Ds\Stack::clear — 移除所有值
此函数没有参数。
不返回值。
示例 #1 Ds\Stack::clear() 示例
<?php
$stack = new \Ds\Stack([1, 2, 3]);
print_r($stack);
$stack->clear();
print_r($stack);
?>
上面的示例将输出类似于以下内容
Ds\Stack Object ( [0] => 3 [1] => 2 [2] => 1 ) Ds\Stack Object ( )