(PECL ds >= 1.0.0)
Ds\Deque::shift — Removes and returns the first value
public Ds\Deque::shift ( ) : mixed
Removes and returns the first value.
This function has no parameters.
The first value, which was removed.
UnderflowException if empty.
Example #1 Ds\Deque::shift() example
<?php $deque = new \Ds\Deque(["a", "b", "c"]); var_dump($deque->shift()); var_dump($deque->shift()); var_dump($deque->shift()); ?>
The above example will output something similar to:
string(1) "a" string(1) "b" string(1) "c"
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/ds-deque.shift.php