The
perldata and
perlreftut manpages should explain the basics. If you have a standard perl install, you can read those by typing
man perldata or
perldoc perldata - see the
perl manpage for an index of all the standard documentation.
Anyway, I'd do it something like this:
my %hash = ( # declare top-level hash
key => [] # create new empty arrayref with key "key"
);
# create a new anonymous hashref with the data and
# push it onto the array
push @{$hash{key}}, {
email => 'email@address',
timestamp => time
};
# that will allow you to get at the first email address
# with the following code:
my $email = $hash{key}[0]{email};
If you want to access by your given example ($hash{key}{array}[0]{email}) you need an extra hash:
my %hash = ( key => { array => [] } );
push @{$hash{key}{array}}, {
email => 'email@address',
timestamp => time
};
updated: fixed bug that ikegami found.
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.