Summary of common predefined variables in php _ PHP Tutorial

Source: Internet
Author: User
Tags http authentication
Summary of common predefined variables in php. Copy the code as follows :? Phpecho current operating system information. PHP_ OS .br; echo path and FILE name of this FILE:. _ FILE _. br; echo current PHP version information. PHP_VERSION.br The code is as follows:


Echo "current operating system information". PHP_ OS ."
";
Echo 'file path and FILE name: '. _ FILE __.'
';
Echo "current PHP version information". PHP_VERSION ."
";
?>



Common php pre-defined variables!

The previous $ _ SERVER [PHP_SELF] returned a piece of information, such as "/upload/try. php "and the following returns an array: $ path_parts = pathinfo('index.html '); echo $ path_parts ['dirname']," \ n "; echo $ path_parts ['basename'], "\ n"; echo $ path_parts ['extension'], "\ n"; echo $ path_parts ['filename'], "\ n"; // since PHP 5.2.0 will return:/uploadindex.html htmlindex
"PHP_SELF"
The file name of the script being executed, which is related to document root. For example, using $ _ SERVER ['php _ SELF '] in a script with a URL address of http://example.com/test.php/foo.bar will get the result of/test. PHP/foo. bar.
"SERVER_PROTOCOL"
The name and version of the communication protocol on the request page. For example, "HTTP/1.0"
REQUEST_METHOD"
The request method used to access the page. For example, "GET", "HEAD", "POST", and "PUT ".
Note: If the request method is HEAD, the PHP script will stop sending the header information (this means no output buffer is available after any output is generated ).

"REQUEST_TIME"
The start time of the request. Valid from PHP 5.1.0.
"QUERY_STRING"
Query string (the first question mark in the URL? ).
"DOCUMENT_ROOT"
The document root directory where the script is currently running. Defined in the server configuration file.
"HTTP_ACCEPT"
The Accept of the current request: the content of the header information.
Predefine variables $ _ common examples of SERVER
For example, I need to obtain the current URL address.

$ Url_this = "http: //". $ _ SERVER ['http _ host']. $ _ SERVER ['php _ SELF '];
Echo $ url_this;


Http: // localhost/lu. php

SERVER variable: $ _ SERVER

Note: PHP 4.1.0 and later versions are used. In earlier versions, $ HTTP_SERVER_VARS is used.

$ _ SERVER is an array containing headers, paths, and script locations. The object of the array is created by the web server. It is not guaranteed that all servers can generate all information. the server may ignore some information or generate new information not listed below. This means that a large number of these variables are described in CGI 1.1 specification, so you should study it carefully.

This is a "superglobal", or it can be described as an automatic global variable. This only means that it is valid in all scripts. You do not need to use global $ _ SERVER; to access a function or method, just like using $ HTTP_SERVER_VARS.

$ HTTP_SERVER_VARS contains the same information, but it is not an automatic global variable. (Note: $ HTTP_SERVER_VARS and $ _ SERVER are different variables. PHP processes them differently .)

If the register_globals command is set, these variables are also available in all scripts; that is, the $ _ SERVER and $ HTTP_SERVER_VARS arrays are separated. For more information, see the security section using Register Globals. These independent global variables are not automatic global variables.

You may find that some $ _ SERVER elements listed below are not available. Note: If you run PHP in the command line mode, the elements listed below are hardly valid (or have no practical significance ).


"PHP_SELF"
The file name of the script being executed, which is related to document root. For example, using $ _ SERVER ['php _ SELF '] in a script with a URL address of http://example.com/test.php/foo.bar will get the result of/test. PHP/foo. bar.

If PHP is run as a command line, the variable is invalid.

"Argv"
Parameters passed to the script. When the script runs in the command line mode, the argv variable is passed to the command line parameters in the C language style of the program. When the GET method is called, the variable contains the requested data.

"Argc"
Contains the number of command line parameters passed to the program (if it is in command line mode ).

"GATEWAY_INTERFACE"
The CGI specification version used by the server. For example, "CGI/1.1 ".

'Server _ name'
Name of the server host where the script is currently running. If the script runs on a VM, the name is determined by the value set by that VM.

'Server _ soft'
The string identified by the server, which is in the header of the response request.

"SERVER_PROTOCOL"
The name and version of the communication protocol on the request page. For example, "HTTP/1.0 ".

"REQUEST_METHOD"
The request method used to access the page. For example, "GET", "HEAD", "POST", and "PUT ".

"QUERY_STRING"
Query string.

"DOCUMENT_ROOT"
The document root directory where the script is currently running. Defined in the server configuration file.

"HTTP_ACCEPT"
The Accept of the current request: the content in the header.

"HTTP_ACCEPT_CHARSET"
Accept-Charset of the current request: content in the header. Example: "ISO-8859-1, *, UTF-8 ".

"HTTP_ACCEPT_ENCODING"
Accept-Encoding of the current request: content in the header. For example, "gzip ".

"HTTP_ACCEPT_LANGUAGE"
The Accept-Language of the current request: the content in the header. For example, "en ".

"HTTP_CONNECTION"
Connection of the current request: content in the header. For example, "Keep-Alive ".

"HTTP_HOST"
Host of the current request: content in the header.

"HTTP_REFERER"
The URL of the previous page that is linked to the current page. Not all user proxies (browsers) will set this variable, and some can also manually modify HTTP_REFERER. Therefore, this variable is not always true.

"HTTP_USER_AGENT"
User_Agent of the current request: content in the header. This string indicates the information of the user agent accessing the page. A typical example is Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586 ). You can also use get_browser () to obtain this information.

"REMOTE_ADDR"
Browsing the IP address of the user on the current page.

'Remote _ host'
The host name of the user browsing the current page. Reverse domain name resolution is based on the user's REMOTE_ADDR.

Note: You must configure the Web server to create this variable. For example, Apache needs to include HostnameLookups On in httpd. conf. See gethostbyaddr ().

"REMOTE_PORT"
The port used by the user to connect to the server.

"SCRIPT_FILENAME"
The absolute path name of the currently executed script.

"SERVER_ADMIN"
This value specifies the SERVER_ADMIN parameter in the Apache server configuration file. If the script runs on a VM, this value is the value of that VM.

"SERVER_PORT"
The port used by the server. The default value is "80 ". If you use an SSL secure connection, this value is the HTTP port you set.

"SERVER_SIGNATURE"
A string containing the server version and virtual host name.

"PATH_TRANSLATED"
The basic path of the file system (not the document root directory) where the current script is located. This is the result of a virtual image to a real path on the server.

"SCRIPT_NAME"
The path that contains the current script. This is useful when the page needs to point to itself.

"REQUEST_URI"
The URI required to access this page. For example, "/index.html ".

"PHP_AUTH_USER"
When PHP runs in the Apache module mode and uses the HTTP authentication function, this variable is the user name entered by the user.

"PHP_AUTH_PW"
When PHP runs in the Apache module mode and is using the HTTP authentication function, this variable is the password entered by the user.

"AUTH_TYPE"
When PHP runs in the Apache module mode and uses the HTTP authentication function, this variable is the authentication type.

The http://www.bkjia.com/PHPjc/325478.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/325478.htmlTechArticle code is as follows :? Php echo "current operating system information ". PHP_ OS. "br/"; echo 'file path and File name :'. _ FILE __. 'Br/'; echo "current PHP version information ". PHP_VERSION. "br...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.