http://qs321.pair.com?node_id=444126


in reply to What are multiple $_[0] =~ operations doing?

$_[0] is the first argument to the function. The binding operator (=~) followed by s/// performs substitutions. The ge at the end says to do the subtitutions how many time it cans ("g") and that the subtitution value should be evaluated ("e").

So, you are substituting "%HTTP_HOST%" by the result of calling the "handleEnvVariable" function.

If you don't like it that way, you can always:

$_[0] =~ s/%(HTTP_HOST|REMOTE_ADDR|REMOTE_PORT|REMOTE_USER)%/handleEnv +Variable($1)/ge;
or (but be careful, it can not work in case there are other variables)
$_[0] =~ s/%([A-Z_]+)%/handleEnvVariable($1)/ge;

Alberto Simões