$_REQUEST
(PHP 4 >= 4.1.0, PHP 5)
$_REQUEST — HTTP Request variables
주의
Note:
이는 '자동전역' 변수입니다.
스크립트의 모든 영역에서 사용할 수 있습니다. 함수나 메쏘드 안에서 접근하기
위해서 global $variable;를 할 필요가
없습니다.
Note:
When running on the command line
, this will not include the
argv and
argc entries; these are
present in the $_SERVER
array.
Note:
The variables in $_REQUEST are provided to the
script via the GET, POST, and COOKIE input mechanisms and
therefore could be modified by the remote user and cannot be
trusted. The presence and order of variables listed in this array
is defined according to the
PHP variables_order
configuration directive.