If you set a variable, either new or existing, the corresponding $_SERVER variable is not changed, and you will have to change it as well.
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
apache_setenv — 아파치의 서브프로세스의 환경 변수를 설정합니다
$variable
, string $value
[, bool $walk_to_top
= false
] )
apache_setenv()은 variable
로
지정한 아파치 환경 변수를 설정합니다.
Note:
아파치 환경 변수를 설정할 때, 해당하는 $_SERVER 변수는 바뀌지 않습니다.
variable
설정할 환경 변수
value
새 variable
값.
walk_to_top
모든 아파치 레이어에서 사용할 수 있는 최고 레벨 변수를 설정할 지 여부
성공 시 TRUE
를, 실패 시 FALSE
를 반환합니다.
Example #1 apache_setenv()를 사용하여 아파치 환경 변수 설정하기
<?php
apache_setenv("EXAMPLE_VAR", "Example Value");
?>
Note:
apache_setenv()은 apache_getenv()과 함께 PHP 스크립트에서 읽어들이는 Server Side Includes(.shtml)에 변수를 설정하여 나눠진 페이지에서 같은 값을 사용할 수 있습니다.
If you set a variable, either new or existing, the corresponding $_SERVER variable is not changed, and you will have to change it as well.
If you are using mod_gzip or mod_deflate to compress HTML output, you're not able to send partial file to the browser....
To disable mod_deflate in PHP (if needed), you can tell Apache with this :
apache_setenv('no-gzip', '1');
When you need to set the QUERY_STRING variable into a page included with the "virtual" function do this:
virtual ("some_page.shtml?$QUERY_STRING");
apache_setenv does not work for this case.
When you want to set variables to pass to Server Side Includes (.shtml) included in PHP scripts, use this.