Help for this page

Select Code to Download


  1. or download this
    ## Blah blah blah whatever populates $dumper
    my $dump_error = undef;
    ...
    
    ## Do something like this to handle the error (or if %info was empty, 
    +or . . .)
    next if $dump_error or %info == 0;
    
  2. or download this
    my $info_ref = eval $dumper;
    if( $@ ) { 
    ...
    } else {
      %info = %{ $info_ref };  ## Or just use $info_ref->{blah} rather tha
    +n $info{blah}
    }