in reply to Re: Simple array checking?
in thread Simple array checking?

Alright, now we are getting somewhere. :)
Here's what you can do:
# !@{$array_ref} <-- Perl will complain about this if $array_ref is un +defined # $#{$array_ref} <-- but not this if($#{$createdFiles->{$streamID}} == -1){ print "Empty\n"; }

--perlpelxer