$arg_parameter http请求中某个参数的值,如/index.php?site=www.xxx.com,能够用$arg_site取得www.xxx.comphp
$args HTTP请求中的完整参数。例如,在请求/index.php?width=40%logn=45中,$args表示字符串width=40%logn=45ide
$is_args 表示请求中得uri是否带参数,若是带参数,is_args值为?,若是不带参数则是空字符串字符串
$query_string 请求uri中得参数,与$args相同,然而$query_string是只读的string
$request_complete 表示请求是否完成,完成是'ok',未完成为空
it