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