📜  PHP | Ds\Stack clear()函数

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

PHP | Ds\Stack clear()函数

PHP的Ds\Stack::clear()函数用于从 Stack 中删除所有元素并清除它。此函数只是从堆栈中删除所有元素,但不会完全删除它。它只是清空它。

语法

void public Ds\Stack::clear ( void )

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

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

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



方案一:

PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
 
// Print the stack
print_r($stack);
 
// clear the stack
$stack->clear();
 
// Print the stack again
print_r($stack);
 
?>


PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
 
// Print the stack
print_r($stack);
 
// clear the stack
$stack->clear();
 
// Print the stack again
print_r($stack);
 
?>


输出:

Ds\Stack Object
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)

Ds\Stack Object
(

)

方案二:

PHP

push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
 
// Print the stack
print_r($stack);
 
// clear the stack
$stack->clear();
 
// Print the stack again
print_r($stack);
 
?>

输出:

Ds\Stack Object
(
    [0] => 5.5
    [1] => 10
    [2] => GfG
    [3] => to
    [4] => Welcome
)

Ds\Stack Object
(

)

参考文献:http:// PHP.NET /手动/ EN / DS-stack.clear。 PHP