Help for this page

Select Code to Download


  1. or download this
        my $JSON  = JSON->new->utf8;
        $JSON->convert_blessed(1);
    ...
        $JSON->pretty(1);
        my $json = $JSON->encode(\%arr_hash);
        print "JSON [\n $json\n ]\n";
    
  2. or download this
     JSON [
     {
    ...
          null
       ]
    }
    
  3. or download this
        my $json = $JSON->encode(\@ace_context);
    
  4. or download this
    print Dumper(\%arr_hash);