|
Последние активные темы форума |
|
apache_getenv
(PHP 4 >= 4.3.0, PHP 5) apache_getenv -- Get an Apache subprocess_env variable
Descriptionstring apache_getenv ( string variable [, bool walk_to_top] ) apache_getenv() returns the value of the Apache
environment variable specified by variable, or
FALSE on failure.
Замечание:
apache_getenv() is only defined when using
Apache 2.
Пример 1. apache_getenv() example
<?php
$ret
=
apache_getenv
(
"SERVER_ADDR"
);
echo
$ret
;
?>
|
The example above shows how to retrieve the value of the Apache
environment variable "SERVER_ADDR".
|
Смотрите также apache_setenv(),
getenv() и
Superglobals.
|