pht\Vector::pop

(PECL pht >= 0.0.1)

pht\Vector::popPops a value to the vector

说锟斤拷

public pht\Vector::pop ( void ) : mixed

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.

锟斤拷锟斤拷

Example #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)