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


PHP Ds\Vector shift()用法及代码示例


Ds \ Vector::shift()函数是PHP中的一个内置函数,用于从向量中删除第一个元素并返回它。

用法:

mixed public Ds\Vector::shift( void )

参数:该函数不接受任何参数。


返回值:此函数返回索引0处的值。

异常:如果vector为空,则此函数将引发UnderflowException。

以下示例程序旨在说明PHP中的Ds \ Vector::shift()函数:

程序1:

<?php 
  
// Declare an Vector 
$vect = new \Ds\Vector(["geeks", "of", "geeks"]); 
  
echo("First element in the vector:\n"); 
  
// Use shift() function to remove first  
// element from vector and display it 
var_dump($vect->shift()); 
  
?>

输出:

First element in the vector:
string(5) "geeks"

程序2:

<?php 
  
// Declare an Vector 
$vect = new \Ds\Vector([1, 2, 3, 4, 5, 6]); 
  
// Use shift() function to remove first  
// element from vector and display it 
var_dump($vect->shift()); 
  
var_dump($vect->shift()); 
  
var_dump($vect->shift()); 
  
var_dump($vect->shift()); 
  
?>

输出:

int(1)
int(2)
int(3)
int(4)

参考: http://php.net/manual/en/ds-vector.shift.php



相关用法


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