Help for this page

Select Code to Download


  1. or download this
    print Dumper ($results);
    
    ...
                  }
              ];
    
  2. or download this
    $results->[0]{'somevar1'}{'othervar1'}
    
  3. or download this
     
    @dereferenced_array = @{results};
    $no_elements_in_array = @dereferenced_array;
    
  4. or download this
    for ($i = 0; $i < $no_elements_in_array; i++) {
    $value = $results->[i]{'somevar1'}{'othervar1'};
    print "$value\n";
    }