Help for this page

Select Code to Download


  1. or download this
    open my $fh, '<', $filename;
    $bytes= <$fh>;
    $data= decode_json($bytes);
    
  2. or download this
    open my $fh, '<:encoding(UTF-8)', $filename;
    $chars= <$fh>;
    $data= JSON->new->decode($chars);