If you replace
: with
=> (or even a comma), then you'd have
PON -
Perl Object Notation, also known as actual Perl code. So having that you could then do something silly like prepend our $hash_ref = then string eval or write it to a file then require it:
dat.pl
our $hash_ref =
{
"genres" => [
{
"id" => 28,
"name" => "Action"
},
{
"id" => 12,
"name" => "Adventure"
},
{
"id" => 16,
"name" => "Animation"
},
{
"id" => 35,
"name" => "Comedy"
},
{
"id" => 80,
"name" => "Crime"
},
{
"id" => 99,
"name" => "Documentary"
},
{
"id" => 18,
"name" => "Drama"
},
{
"id" => 10751,
"name" => "Family"
},
{
"id" => 14,
"name" => "Fantasy"
},
{
"id" => 36,
"name" => "History"
},
{
"id" => 27,
"name" => "Horror"
},
{
"id" => 10402,
"name" => "Music"
},
{
"id" => 9648,
"name" => "Mystery"
},
{
"id" => 10749,
"name" => "Romance"
},
{
"id" => 878,
"name" => "Science Fiction"
},
{
"id" => 10770,
"name" => "TV Movie"
},
{
"id" => 53,
"name" => "Thriller"
},
{
"id" => 10752,
"name" => "War"
},
{
"id" => 37,
"name" => "Western"
}
]
}
show_dat.pl
use Data::Dumper;
require 'dat.pl';
print Data::Dumper::Dumper($hash_ref);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.