PHP - Ds Imposta la funzione get ()

La funzione Ds \ Set :: get () può restituire il valore a un dato indice.

Sintassi

public mixed Ds\Set::get( int $index )

La funzione Ds \ Set :: get () può restituire il valore all'indice richiesto.

La funzione Ds \ Set :: get () può generare OutOfRangeException se un indice non è valido.

Esempio 1

<?php  
   $set = new \Ds\Set([10, 15, 20, 25, 30]);  
   var_dump($set);  
  
   echo "The value at index 3:"; 
   print_r($set->get(3)); 
?>

Esempio 2

<?php  
   $set = new \Ds\Set(["Tutorials", "Point", "India"]);  
   var_dump($set);  
  
   echo "The value at index 1:"; 
   print_r($set->get(1)); 
?>