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