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.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

This is what I normally use:

zval** arr;
if (zend_hash_find(&EG(symbol_table), "_SERVER", 8, (void**)&arr) != FAILURE) {
    add_assoc_string(*arr, "foo", "bar", 1);
}

See Extension Writing Part II: Parameters, Arrays, and ZVALs for possible value types.

link|improve this answer
Thanks, this looks good; and thanks again for that link, what a shame I was not able to find that ;) – wonk0 Oct 25 '11 at 18:43
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.

link|improve this answer
Er... He's writing a PHP extension in C language, not a PHP-powered web site. – Álvaro G. Vicario Oct 25 '11 at 16:42
That's true. My bad. I didn't read carefully enough. Anyway, AFAIK $_SERVER array contains environmental variables provided by the server software, so I think it's not possible to add them any other way. – budwiser Oct 25 '11 at 16:51
All PHP superglobals are writable. Even from PHP code! – Álvaro G. Vicario Oct 25 '11 at 16:56
$_SERVER contains env-vars, but is filled by PHP (e.g. in sapi/cli/php_cli.c). But it should be possible to add entries from within an extension and independent of any sapi. – wonk0 Oct 25 '11 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.