Help for this page

Select Code to Download


  1. or download this
    print Dumper($coordinates->{"AC"}{"132"}{"0"}{"coords"});
    $VAR1 = {
    ...
                       'name' => 'Ygeo'
                     }
            };
    
  2. or download this
    print Dumper(%{$$coordinates{"BD"}{"132"}{"0"}{"coords"}});
    $VAR1 = '1';
    ...
              'value' => '5953375.013',
              'name' => 'Ygeo'
            };
    
  3. or download this
    $hashref   # HASH(x183e2e8)
    %($hashref}   # %{HASH(x183e2e8)}
    %$hashref   # %{HASH(x183e2e8)}
    
  4. or download this
    $$hashref{$key1}{$key2}{$key3}   # = scalar value
    
  5. or download this
    $$hashref{$key1}{$key2}{$key3}   # HASH(0x18b9df8)
    $hashref->{$key1}{$key2}{$key3}   # HASH(0x18b9df8)
    %($$hashref{$key1}{$key2}{$key3}}   # 1HASH(0x18b9e58)2HASH(0x18b9e88)
    
  6. or download this
    %($hashref{$key1}{$key2}{$key3}}   # Global symbol %hashref requires e
    +xplicit package name
    %$hashref{$key1}{$key2}{$key3}   # syntax error