PHP | Ds\Stack push()函数
PHP的Ds\Stack::push()函数用于在栈尾添加元素。它用于将元素推入堆栈。被推送的元素可以是混合数据类型。
句法:
void public Ds\Stack::push ($values)
参数:此函数接受用于压入堆栈的单个参数$values 。
返回值:此函数不返回任何值。
下面的程序说明了Ds\Stack::push()函数:
程序一:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the stack
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);
?>
输出:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
方案二:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Print the stack
print_r($stack);
?>
输出:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
参考:https://www. PHP.net/manual/en/ds-stack.push。 PHP