Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Populate CGI from HTTP::Request wo/ using %ENV ?

by ikegami (Patriarch)
on Mar 09, 2008 at 22:28 UTC ( [id://673141]=note: print w/replies, xml ) Need Help??


in reply to Populate CGI from HTTP::Request wo/ using %ENV ?

You could use local *ENV; to remove the magic from %ENV, making it a normal per-thread variable.

Replies are listed 'Best First'.
Re^2: Populate CGI from HTTP::Request wo/ using %ENV ?
by renodino (Curate) on Mar 10, 2008 at 00:16 UTC
    Ah, yes! Thnx! Alas, I'll have to copy out the current %ENV into a temp, then copy back into the local'ized version, but that still makes things much easier.

    Perl Contrarian & SQL fanboy
      You can skip the temp:
      local *ENV = { %ENV };

      Just to be clear, child processes and forks won't see any change made to %ENV while this local is in effect.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://673141]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-03-29 02:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found