Dutch PHP Conference 2025 - Call For Papers

Ds\Vector::pop

(PECL ds >= 1.0.0)

Ds\Vector::popRemoves and returns the last value

Опис

public Ds\Vector::pop(): mixed

Removes and returns the last value.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The removed last value.

Помилки/виключення

UnderflowException if empty.

Приклади

Приклад #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());
?>

Поданий вище приклад виведе щось схоже на:

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

User Contributed Notes

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