| 
        
            Ds\Set::getReturns the value at a given index. Description
   public mixed Ds\Set::get
    ( int  
  $index
   )Returns the value at a given index. Parameters
 Return ValuesThe value at the requested index. Errors/ExceptionsOutOfRangeException if the index is not valid. ExamplesExample #1 Ds\Set::get example 
<?phpThe above example will output something similar to: string(1) "a" string(1) "b" string(1) "c" Example #2 Ds\Set::get example using array syntax 
<?phpThe above example will output something similar to: string(1) "a" string(1) "b" string(1) "c"  |