Ds\Vector::shift

(PECL ds >= 1.0.0)

Ds\Vector::shiftRemoves and returns the first value

說(shuō)明

public Ds\Vector::shift(): mixed

Removes and returns the first value.

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

The first value, which was removed.

錯(cuò)誤/異常

UnderflowException if empty.

范例

示例 #1 Ds\Vector::shift() example

<?php
$vector 
= new \Ds\Vector(["a""b""c"]);

var_dump($vector->shift());
var_dump($vector->shift());
var_dump($vector->shift());
?>

以上例程的輸出類似于:

string(1) "a"
string(1) "b"
string(1) "c"