in reply to localization of $_
That looks innocent, right? Watch it get blown to hell:package MyConfigReader; sub readConfig { my ($file,$var) = @_; open FILE, "< $file" or die "can't read $file: $!"; while (<FILE>) { chomp; my ($k,$v) = split /=/, $_, 2; return $v if $k eq $var; } close FILE; return; }
My program has just modified the input record separator variable. The module relied on that being \n, and now it isn't.use MyConfigReader; $/ = "not gonna happen"; MyConfigReader::readConfig("whatever.dat");
So yes, this is something you should be doing. Trusting the user is potentially silly. Perhaps there should be a switch like -T that catches blind use of "true globals" like you demonstrated.sub readConfig { my ($file,$var) = @_; local ($_, $/); $/ = "\n"; # rest of function }
|
|---|