PHP - Funzione Ds Set first ()
La funzione Ds \ Set :: first () può restituire il primo valore in un set.
Sintassi
public void Ds\Set::first( void )
La funzione Ds \ Set :: first () non ha parametri.
Esempio 1
<?php
$set = new \Ds\Set();
$set->add("10");
$set->add("20");
$set->add("30");
print_r($set->first());
?>
Esempio 2
<?php
$set = new \Ds\Set();
$set->add("Tutorials");
$set->add("Point");
$set->add("India");
print_r($set->first());
?>