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

La función Ds\Vector::last() es una función incorporada en PHP que se utiliza para devolver el último elemento del vector.

Sintaxis:

mixed public Ds\Vector::last( void )

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

Valor devuelto: esta función devuelve el valor en el último índice del vector.

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

Programa 1:

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

Producción:

Last element of vector: int(5)

Programa 2:

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

Producción:

Last element of vector: string(5) "geeks"

Referencia: http://php.net/manual/en/ds-vector.last.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 *