Vector
PHP Manual

Ds\Vector::first

(PECL ds >= 1.0.0)

Ds\Vector::firstReturns the first value in the vector.

Açıklama

public mixed Ds\Vector::first ( void )

Returns the first value in the vector.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

The first value in the vector.

Hatalar/İstisnalar

UnderflowException if empty.

Örnekler

Örnek 1 Ds\Vector::first() example

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(1)

Vector
PHP Manual