(PHP 3, PHP 4 )
putenv -- Set the value of an environment variable.
Description
void putenv
(string setting)
Adds setting to the server environment. The
environment variable will only exist for the duration of the current request.
At the end of the request the environment is restored to its original state.
Example 1. Setting an Environment Variable
putenv ("UNIQID=$uniqid");
|
|