Ds\Set::last

(PECL ds >= 1.0.0)

Ds\Set::lastReturns the last value in the set

Descrierea

public Ds\Set::last ( ) : mixed

Returns the last value in the set.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The last value in the set.

Erori/Excepții

UnderflowException if empty.

Exemple

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

<?php
$set 
= new \Ds\Set([123]);
var_dump($set->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