Ds\Vector::pop

(PECL ds >= 1.0.0)

Ds\Vector::popRemoves and returns the last value

Beschreibung

publicDs\Vector::pop(): mixed

Removes and returns the last value.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The removed last value.

Fehler/Exceptions

UnderflowException if empty.

Beispiele

Beispiel #1 Ds\Vector::pop() example

<?php
$vector
= new \Ds\Vector([1, 2, 3]);

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

int(3) int(2) int(1)
To Top