zoukankan      html  css  js  c++  java
  • Table of CGI variable names

     

    Field name

    Returns

    Auth_Type

    If the server supports user authentication and the script is protected, this is the protocol-specific authentication method used to validate the user.

    Content_Length

    The length of the content, as given by the client.

    Content_Type

    For queries that have attached information, such as HTTP POST and PUT, this is the content type of the data.

    Gateway_Interface

    The version of the CGI spec with which the server complies.

    HTTP_Accept

    The MIME types that the client accepts, as specified by HTTP headers.

    HTTP_Accept_language

    The languages that the client accepts, as specified by HTTP headers.

    HTTP_Referer

    The URL of the page the user used to get here.

    HTTPS

    Indicates if SSL mode is enabled for the server.

    HTTPS_CLIENT_CERT_COMMON_NAME

    The common name on the x.509 certificate

    HTTPS_CLIENT_CERT_ISSUER_COMMON_NAME

    The issuer of the x.509 certificate

    HTTPS_KEYSIZE

    The session key during an SSL session. For example, 40-bit, 128-bit.

    HTTP_User_Agent

    The browser that the client is using to send the request.

    Path_Info

    The extra path information (from the server's root HMTL directory), as given by the client. In other words, scripts can be accessed by their virtual path name, followed by extra information that is sent as PATH_INFO.

    Path_Info_Decoded

    Returns the same as Path_Info, but decodes the string. For example, if a URL references a view name that contains characters that are not allowed a URL, the name is encoded. This CGI variable decodes the string. Path_Info_Decoded is available to Domino applications only.

    Path_Translated

    The server provides a translated version of PATH_INFO, which takes the path and does any virtual-to-physical mapping to it.

    Query_String

    The information that follows the question mark (?) in the URL that referenced this script.  

    Note  If your Domino server is configured to allow search engines to search your Web site Domino will generate URLs with an exclamation mark (!) instead of a question mark (?). If this is the case the Query_String CGI variable includes the information that follows the exclamation mark (!). Domino always recognizes both the question mark (?) and the exclamation mark (!), but only generates URLs with the exclamation mark (!) if your site is accessible to Web search engines. Generating URLs with an exclamation mark (!) makes them more searchable.

    Query_String_Decoded

    Returns the same as Query_String, but decodes the string. For example, if a URL references a view name that contains characters that are not allowed in a URL, the name is encoded. This CGI variable decodes that string. Path_Info_Decoded is available to Domino applications only.

    Remote_Addr

    The IP address of the remote host making the request.

    Remote_Host

    The name of the host making the request.

    Remote_Ident

    This variable will be set to the remote user name retrieved from the server. Use this variable only for logging.

    Remote_User

    Authentication method that returns the authenticated user name.

    Request_Content

    Supported only for agents. Contains the data sent with an HTTP POST request. The data is usually "URLencoded," consisting of name=value pairs concatenated by ampersands. For example, FirstName=John&LastName=Doe

    Request_Content_nnn

    Used when the amount of data to be sent with an HTTP POST request exceeds the 64K limit.  The first 64K of data is sent in Request_Content_000, the second 64K of data is sent in Request_Content_001, and so on.

    Request_Method

    The method used to make the request. For HTTP, this is "GET," "HEAD," "POST," and so on.

    Script_Name

    A virtual path to the script being executed, used for self-referencing URLs.

    Server_Name

    The server's host name, DNS alias, or IP address as it would appear in self-referencing URLs.

    Server_Protocol

    The name and revision of the information protocol accompanying this request.

    Server_Port

    The port to which the request was sent.

    Server_Software

    The name and version of the information server software running the CGI program.

    Server_URL_Gateway_Interface

    The version of the CGI spec with which the server complies.

     

  • 相关阅读:
    【24.17%】【codeforces 721D】Maxim and Array
    【26.42%】【codeforces 745C】Hongcow Builds A Nation
    【67.24%】【codeforces 745A】Hongcow Learns the Cyclic Shift
    【37.50%】【codeforces 745B】Hongcow Solves A Puzzle
    【78.89%】【codeforces 746A】Compote
    【75.28%】【codeforces 764B】Decoding
    【30.43%】【codeforces 746C】Tram
    【21.58%】【codeforces 746D】Green and Black Tea
    四种生成和解析XML文档的方法详解(介绍+优缺点比较+示例)
    xml常用四种解析方式优缺点的分析×××××
  • 原文地址:https://www.cnblogs.com/hannover/p/1867487.html
Copyright © 2011-2022 走看看