Ds\Vector::last

(PECL ds >= 1.0.0)

Ds\Vector::lastReturns the last value

˵��

public Ds\Vector::last ( void ) : mixed

Returns the last value in the vector.

����

�˺���û�в�����

����ֵ

The last value in the vector.

�����쳣

UnderflowException if empty.

����

Example #1 Ds\Vector::last() example

<?php
$vector 
= new \Ds\Vector([123]);
var_dump($vector->last());
?>

�������̵���������ڣ�

int(3)