PHP | Función Ds\\Vector primero()

La función Ds\Vector::first() es una función incorporada en PHP que se usa para encontrar el primer elemento en el vector.

Sintaxis:

mixed public Ds\Vector::first( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve el primer elemento presente en el vector.

Los siguientes programas ilustran la función Ds\Vector::first() en PHP:

Programa 1:

<?php
  
// Create vector elements
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
  
  
echo("First element of the vector: ");
  
// Use first() function to find
// the first element
var_dump($vector->first());
  
?>

Producción:

First element of the vector: int(1)

Programa 2:

<?php
  
// Create vector elements
$vector = new \Ds\Vector(["geeks", "for", "geeks"]);
  
  
echo("First element of the vector: ");
  
// Use first() function to find
// the first element
var_dump($vector->first());
  
?>

Producción:

First element of the vector: string(5) "geeks"

Referencia: http://php.net/manual/en/ds-vector.first.php

Publicación traducida automáticamente

Artículo escrito por barykrg y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *