当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Stack push()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Stack push() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。