PHP | Ds\Stack pop()函数
PHP的Ds\Stack::pop()函数用于删除 Stack 实例顶部的元素。该函数在移除栈顶元素后也返回栈顶元素。
句法:
mixed public Ds\Stack::pop ( void )
参数:该函数不接受任何参数。
返回值混合此函数返回存在于堆栈顶部的元素并将其从堆栈中移除。
下面的程序说明了PHP的Ds\Stack::pop()函数:
方案一:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the initial Stack
print_r($stack);
// Print the top element and remove it
print_r($stack->pop());
// 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 initially
print_r($stack);
// Print the top element and remove it
print_r($stack->pop());
// Print the stack again
print_r($stack);
?>
输出:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
GfG
Ds\Stack Object
(
[0] => to
[1] => Welcome
)
方案二:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Print the Stack initially
print_r($stack);
// Print the top element and remove it
print_r($stack->pop());
// Print the stack again
print_r($stack);
?>
输出:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
5.5
Ds\Stack Object
(
[0] => 10
[1] => GfG
[2] => to
[3] => Welcome
)
参考文献:http:// PHP.NET /手动/ EN / DS-stack.pop。 PHP