La función Ds\Set::last() es una función incorporada en PHP que se utiliza para devolver el último elemento de la instancia de Set.
Sintaxis:
void public Ds\Set::last( void )
Parámetro: Esta función no acepta ningún parámetro.
Valor devuelto: Esta función devuelve el último valor del Conjunto.
Los siguientes programas ilustran la función Ds\Set::last() en PHP:
Programa 1:
PHP
<?php // PHP program to illustrate the // Ds\set::last() function // Create a set instance $set = new \Ds\Set(); // Adding elements to Set $set->add("Welcome"); $set->add("to"); $set->add("GfG"); // Print the last element from set print_r($set->last()); ?>
Producción:
GfG
Programa 2:
PHP
<?php // PHP program to illustrate the // Ds\set::last() function // Create a set instance $set = new \Ds\Set(); // Adding elements to Set $set->add("10"); $set->add("20"); $set->add("30"); // Print the last element from set print_r($set->last()); ?>
Producción:
30
Referencia: http://php.net/manual/en/ds-set.last.php