PHP 8.1.20 Released!

Ds\Vector::last

(PECL ds >= 1.0.0)

Ds\Vector::lastReturns the last value

Descrição

public Ds\Vector::last(): mixed

Returns the last value in the vector.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The last value in the vector.

Erros

UnderflowException if empty.

Exemplos

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

<?php
$vector
= new \Ds\Vector([1, 2, 3]);
var_dump($vector->last());
?>

O exemplo acima produzirá algo semelhante a:

int(3)
add a note

User Contributed Notes

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