Statement on glibc/iconv Vulnerability

Ds\Sequence::first

(PECL ds >= 1.0.0)

Ds\Sequence::firstReturns the first value in the sequence

Descrizione

abstract public Ds\Sequence::first(): mixed

Returns the first value in the sequence.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The first value in the sequence.

Errori/Eccezioni

UnderflowException if empty.

Esempi

Example #1 Ds\Sequence::first() example

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

Il precedente esempio visualizzerà qualcosa simile a:

int(1)
add a note

User Contributed Notes

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