PHP - Funzione Ds Vector first ()
La funzione Ds \ Vector :: first () può restituire il primo valore in un vettore.
Sintassi
public mixed Ds\Vector::first( void )
La funzione Ds \ Vector :: first () non ha parametri. Questa funzione può restituire il primo valore in un vettore.
La funzione Ds \ Vector :: first () può generare UnderflowException se vuota.
Esempio 1
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("The first element of vector:");
var_dump($vector->first());
?>
Esempio 2
<?php
$vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
echo("The first element of vector:");
var_dump($vector->first());
?>