Ds\Vector::first

(PECL ds >= 1.0.0)

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

说明

public Ds\Vector::first ( void ) : mixed

Returns the first value in the vector.

参数

此函数没有参数。

返回值

The first value in the vector.

错误/异常

UnderflowException if empty.

范例

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

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

以上例程的输出类似于:

int(1)