當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。