Dutch PHP Conference 2025 - Call For Papers

Ds\Deque::pop

(PECL ds >= 1.0.0)

Ds\Deque::popRemoves and returns the last value

Опис

public Ds\Deque::pop(): mixed

Removes and returns the last value.

Параметри

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

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

The removed last value.

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

UnderflowException if empty.

Приклади

Приклад #1 Ds\Deque::pop() example

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

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

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

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

User Contributed Notes

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