Created
February 12, 2014 17:13
-
-
Save stevelippert/8960010 to your computer and use it in GitHub Desktop.
A bad example of UTF8 decoding JSON text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/perl | |
| use JSON; | |
| $jsonData = new JSON; | |
| open my $fh, '<', "/home/slippert/settings.json"; | |
| my $rawJSONData = do { local $/; <$fh> }; | |
| eval{ $dataModel = $jsonData->utf8->decode($rawJSONData); }; | |
| close $fh; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment