Well, unexpected to me...
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper 'Dumper';
use CGI;
my $q = CGI->new();
my $var = { first => $q->param('first'),
second => $q->param('second'),
};
print Dumper($var);
What do you expect $var to be? I expected
$VAR1 = {
'first' => undef,
'second' => undef,
};
What I got was:
$VAR1 = {
'first' => 'second'
};
To me, this is unexpected behavior. This is the line that gives us this:
return unless defined($name) && $self->{$name};
Changing it to:
return undef unless defined($name) && $self->{$name};
gives me the behavior I expect. But, is there a reason why the line as it stands is more correct than my interpretation? Am I the only person who thinks that the current implementation feels wrong?
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.