1. $args #这个变量等于请求行中的参数,同$query\_string
    2. $content\_length 请求头中的Contentlength ds1字段。
    3. $content\_type 请求头中的ContentType字段。
    4. $document\_root 当前请求在root指令中指定的值。
    5. $host 请求主机头字段,否则为服务器名称。
    6. $http\_user\_agent 客户端agent信息
    7. $http\_cookie 客户端cookie信息
    8. $limit\_rate 这个变量可以限制连接速率。
    9. $request\_method 客户端请求的动作,通常为GETPOST
    10. $remote\_addr 客户端的IP地址。
    11. $remote\_port 客户端的端口。
    12. $remote\_user 已经经过Auth Basic Module验证的用户名。
    13. $request\_filename 当前请求的文件路径,由rootalias指令与URI请求生成。
    14. $scheme HTTP方法(如httphttps)。
    15. $server\_protocol 请求使用的协议,通常是HTTP/1.0HTTP/1.1
    16. $server\_addr 服务器地址,在完成一次系统调用后可以确定这个值。
    17. $server\_name 服务器名称。
    18. $server\_port 请求到达服务器的端口号。
    19. $request\_uri 包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。
    20. $uri 不带请求参数的当前URI$uri不包含主机名,如”/foo/bar.html”。
    21. $document\_uri $uri相同。

    全局变量好处就是可以用在一些判断里面作为参数。
    例:
    如果发起请求 http://localhost:88/test1/test2/test.php
    那么各个变量如下,
    $host:localhost
    $server_port:88
    $request_uri:[http://localhost:88/test1/test2/test.php]
    $document_uri:/test1/test2/test.php
    $document_root:/var/www/html
    $request_filename:/var/www/html/test1/test2/test.php