in reply to Re^2: Unexpected CGI param behavior
in thread Unexpected CGI param behavior

"would *also* fail" - um, no it wouldn't, because it explicitly returns a scalar undef. I've tested it.

Of course, what it would do is change an array assignment:

# from @array=(); # to: @array=(undef);

Which would be an unacceptable change to existing behavior (exists $array[0] value would change from empty string to 1).

Replies are listed 'Best First'.
Re^4: Unexpected CGI param behavior
by ikegami (Patriarch) on Jun 25, 2008 at 07:37 UTC
    Not that situation, the situation where the field is present.