Ds\Vector::last

(PECL ds >= 1.0.0)

Ds\Vector::lastReturns the last value

Descrierea

public Ds\Vector::last ( ) : mixed

Returns the last value in the vector.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The last value in the vector.

Erori/Excepții

UnderflowException if empty.

Exemple

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

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

Exemplul de mai sus va afișa ceva similar cu:

int(3)
add a note add a note

User Contributed Notes

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