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


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



Ds\Queue::push() 函数可以将值推送到队列中。

用法

public void Ds\Queue::push([ mixed $...values ] )

Ds\Queue::push() 函数不返回任何值。

示例1

<?php  
   $queue = new \Ds\Queue();  
   $queue->push("Tutorials"); 
   $queue->push("Point"); 
   $queue->push("India"); 
  
   echo "The queue is:\n"; 
   print_r($queue); 
?>

示例2

<?php  
   $queue = new \Ds\Queue();  
   $queue->push("Tutorials"); 
   $queue->push("Point", "2"); 
   $queue->push("India", "3", "4"); 
  
   echo "The queue is:\n"; 
   print_r($queue); 
?>

相关用法


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