pht\Vector::pop

Pops a value to the vector

説明

public mixed pht\Vector::pop ( void )

This method pops a value from the end of a vector (in constant time). Popping a value from an empty vector will result in an Error exception.

パラメータ

この関数にはパラメータはありません。

戻り値

The value from the end of the vector.

例1 Popping a value from a vector

<?php

use pht\Vector;

$vector = new Vector();

$vector->push(1);
$vector[] = 2;

var_dump($vector->pop());

上の例の出力は以下となります。

int(2)