Help for this page

Select Code to Download


  1. or download this
    my $p = \$href;
    $p = \($$p->{$_}) for @keys;
    $$p = $val;
    
  2. or download this
    my $p = $href;
    for (@keys) {
    ...
       $p = $p->{$_};
    }
    return 1;