$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