Help for this page

Select Code to Download


  1. or download this
            foreach my $key (keys %$decodedJSON)
                {
                if (is_hashref($key))    {
                ...
    
  2. or download this
            foreach my $key (keys %$decodedJSON)
                {
                my $val = $decodedJSON->{ $key };
                if (is_hashref($val))    {
                ...