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.
Add entry to $_SERVER in extension
939 Views Asked by wonk0 At
2
There are 2 best solutions below
3

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.
This is what I normally use:
See Extension Writing Part II: Parameters, Arrays, and ZVALs for possible value types.