La función Ds\Sequence::first() es una función incorporada en PHP que se usa para devolver el primer elemento de la secuencia.
Sintaxis:
mixed abstract public Ds\Sequence::first ( void )
Parámetro: Esta función no acepta ningún parámetro.
Valor devuelto: Esta función devuelve el primer elemento de la secuencia.
Los siguientes programas ilustran la función Ds\Sequence::first() en PHP:
Ejemplo 1:
<?php // Create new sequence $seq = new \Ds\Vector([10, 20, 13, 25]); // Display the first element from the sequence var_dump($seq->first()); // Create new sequence $seq = new \Ds\Vector(['G', 'e', 'e', 'k', 's']); // Display the first element from the sequence var_dump($seq->first()); ?>
Producción:
int(10) string(1) "G"
Ejemplo 2:
<?php // Create new sequence $seq = new \Ds\Vector([21, 23, 'p', 'x']); // Display the first element // from the sequence var_dump($seq->first()); // Function to push an element $seq->insert(0, "G"); // Display the first element // from the sequence var_dump($seq->first()); ?>
Producción:
int(21) string(1) "G"
Referencia: http://php.net/manual/en/ds-sequence.first.php