PHP的Ds \ Stack::push()函数用于在堆栈末尾添加元素。也就是说,它用于将元素压入堆栈。被推送的元素可以是混合数据类型。
用法:
void public Ds\Stack::push ($values)
参数:此函数接受单个参数$values,该参数用于压入堆栈。
返回值:此函数不返回任何值。
以下示例程序旨在说明Ds \ Stack::push()函数:
程序1::
<?php
// PHP program to illustarte the
// push() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the stack
print_r($stack);
?>
输出:
Ds\Stack Object ( [0] => GfG [1] => to [2] => Welcome )
程序2::
<?php
// PHP program to illustarte the
// push() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing Mixed value elements to Stack
$stack->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
相关用法
- PHP Ds\Sequence push()用法及代码示例
- PHP Ds\Vector push()用法及代码示例
- PHP Ds\Queue push()用法及代码示例
- PHP Ds\PriorityQueue push()用法及代码示例
- PHP Ds\Deque push()用法及代码示例
- PHP SplDoublyLinkedList push()用法及代码示例
- PHP pi( )用法及代码示例
- PHP max( )用法及代码示例
- PHP min( )用法及代码示例
- PHP end()用法及代码示例
- PHP dir()用法及代码示例
- PHP key()用法及代码示例
- PHP pos()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Stack push() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。