Help for this page

Select Code to Download


  1. or download this
    $foo = { 'SOMETHING_01' => {'CLASS' => [ {'VALUE' => 'BUBBLE' } ] } }
    
  2. or download this
    $bar = $foo->{SOMETHING_01};   # $bar is hash reference
    $caz = %{$foo->{SOMETHING_01}; # $caz is a hash 
    print $caz{'CLASS'};           # 'ARRAY(...)' - an array reference
    print $caz{'CLASS'}->[0];      # 'HASH(...)' - a hash reference