CakeFest 2024: The Official CakePHP Conference

Ds\Vector::pop

(PECL ds >= 1.0.0)

Ds\Vector::popRemoves and returns the last value

Beschreibung

public Ds\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)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top