Ds\Vector::pop

(PECL ds >= 1.0.0)

Ds\Vector::popRemoves and returns the last value

Descrizione

public Ds\Vector::pop(): mixed

Removes and returns the last value.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The removed last value.

Errori/Eccezioni

UnderflowException if empty.

Esempi

Example #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());
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

int(3)
int(2)
int(1)
add a note add a note

User Contributed Notes

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