I need to add an entry to the superglobal $_SERVER-array within a PHP extension. I am quite sure that php_register_variable() will do the job, paasing key and value as arguments; but I have no idea what to pass as 3rd argument. Unfortunately documentation on this topic is rather sparse.
|
| ||||
|
feedback
|
|
This is what I normally use:
See Extension Writing Part II: Parameters, Arrays, and ZVALs for possible value types. | |||
feedback
|
|
You can set it through Apache's SetEnv directive using mod_env module. See Setting a Php $_SERVER value ($_SERVER['something']) using Apache .htaccess for reference. | |||||||||
feedback
|