PHP $_SERVER environment variable

PHP provides a large number of predefined variables to all scripts, and $_SERVER array is commonly used to refer to server-specific environment information. Per PHP.net documentation, the $_SERVER variable is defined as:

Description
$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. There is no guarantee that every web server will provide any of these; servers may omit some, or provide others not listed here. That said, a large number of these variables are accounted for in the ยป CGI/1.1 specification, so you should be able to expect those.

$HTTP_SERVER_VARS contains the same initial information, but is not a superglobal. (Note that $HTTP_SERVER_VARS and $_SERVER are different variables and that PHP handles them as such)

Indices

$_SERVER['PHP_SELF']: The filename of the currently executing script, relative to the document root. No query string will be returned. For instance, $_SERVER['PHP_SELF'] in a script at the address http://example.com/test.php?abc=123 would be /test.php. The __FILE__ constant contains the full path and filename of the current (i.e. included) file. If PHP is running as a command-line processor this variable contains the script name since PHP 4.3.0. Previously it was not available.

http://example.com/server.php?a=1&b=2&c=3  ==>  /server.php

$_SERVER['GATEWAY_INTERFACE']: What revision of the CGI specification the server is using; i.e. 'CGI/1.1'.

http://example.com/server.php?a=1&b=2&c=3  ==>  CGI/1.1

$_SERVER['SERVER_ADDR']: The IP address of the server under which the current script is executing.

http://example.com/server.php?a=1&b=2&c=3  ==>  69.67.216.167

$_SERVER['SERVER_NAME']: The name of the server host under which the current script is executing. If the script is running on a virtual host, this will be the value defined for that virtual host.

http://example.com/server.php?a=1&b=2&c=3  ==>  example.com

$_SERVER['SERVER_SOFTWARE']: Server identification string, given in the headers when responding to requests.

http://example.com/server.php?a=1&b=2&c=3  ==>  Apache/2.2.3 (CentOS)

$_SERVER['SERVER_PROTOCOL']: Name and revision of the information protocol via which the page was requested; i.e. 'HTTP/1.0';

http://example.com/server.php?a=1&b=2&c=3  ==>  HTTP/1.1

$_SERVER['SERVER_METHOD']: Which request method was used to access the page; i.e. 'GET', 'HEAD', 'POST', 'PUT'? (Note: PHP script is terminated after sending headers (it means after producing any output without output buffering) if the request method was HEAD.)

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['REQUEST_TIME']: The timestamp of the start of the request. Available since PHP 5.1.0.

http://example.com/server.php?a=1&b=2&c=3  ==>  1307744457

$_SERVER['QUERY_STRING']: The query string, if any, via which the page was accessed.

http://example.com/server.php?a=1&b=2&c=3  ==>  a=1&b=2&c=3

$_SERVER['DOCUMENT_ROOT']: The document root directory under which the current script is executing, as defined in the server's configuration file.

http://example.com/server.php?a=1&b=2&c=3  ==>  /var/www/html

$_SERVER['HTTP_ACCEPT']: Contents of the Accept: header from the current request, if there is one.

http://example.com/server.php?a=1&b=2&c=3  ==>  text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

$_SERVER['HTTP_ACCEPT_CHARSET']: Contents of the Accept-Charset: header from the current request, if there is one. Example: 'iso-8859-1,*,utf-8'.

http://example.com/server.php?a=1&b=2&c=3  ==>  ISO-8859-1,utf-8;q=0.7,*;q=0.3

$_SERVER['HTTP_ACCEPT_ENCODING']: Contents of the Accept-Encoding: header from the current request, if there is one. Example: 'gzip'.

http://example.com/server.php?a=1&b=2&c=3  ==>  gzip,deflate,sdch

$_SERVER['HTTP_ACCEPT_LANGUAGE']: Contents of the Accept-Language: header from the current request, if there is one. Example: 'en'.

http://example.com/server.php?a=1&b=2&c=3  ==>  en-US,en;q=0.8

$_SERVER['HTTP_CONNECTION']: Contents of the Connection: header from the current request, if there is one. Example: 'Keep-Alive'.

http://example.com/server.php?a=1&b=2&c=3  ==>  keep-alive

$_SERVER['HTTP_HOST']: Contents of the Host: header from the current request, if there is one.

http://example.com/server.php?a=1&b=2&c=3  ==>  example.com

$_SERVER['HTTP_REFERER']: The address of the page (if any) that referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['HTTP_USER_AGENT']: Contents of the User-Agent: header from the current request, if there is one. This is a string denoting the user agent being which is accessing the page. A typical example is: Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586). Among other things, you can use this value with get_browser() to tailor your page's output to the capabilities of the user agent.

http://example.com/server.php?a=1&b=2&c=3  ==>  Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.91 Safari/534.30

$_SERVER['HTTPS']: Set to a non-empty value if the script was queried through the HTTPS protocol. (Note: Note that when using ISAPI with IIS, the value will be off if the request was not made through the HTTPS protocol.) Not all web servers return values for this parameter..

http://example.com/server.php?a=1&b=2&c=3  ==>   https://example.com/server.php?a=1&b=2&c=3  ==>  On

$_SERVER['REMOTE_ADDR']: The IP address from which the user is viewing the current page.

http://example.com/server.php?a=1&b=2&c=3  ==>  24.15.238.72

$_SERVER['REMOTE_HOST']: The Hostname from which the user is viewing the current page. The reverse DNS lookup is based on the REMOTE_ADDR of the user. (Note: Your web server must be configured to create this variable. For example, (in Apache) you'll need HostnameLookups On inside httpd.conf for it to exist. See also gethostbyaddr().)

http://example.com/server.php?a=1&b=2&c=3  ==>  49857

$_SERVER['REMOTE_PORT']: The port being used on the user's machine to communicate with the web server.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['SCRIPT_FILENAME']: The absolute pathname of the currently executing script. (Note: If a script is executed with the CLI, as a relative path, such as file.php or ../file.php, $_SERVER['SCRIPT_FILENAME'] will contain the relative path specified by the user.)

http://example.com/server.php?a=1&b=2&c=3  ==>  /var/www/html/server.php

$_SERVER['SERVER_ADMIN']: The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file. If the script is running on a virtual host, this will be the value defined for that virtual host.

http://example.com/server.php?a=1&b=2&c=3  ==>  [email protected]

$_SERVER['SERVER_PORT']: The port on the server machine being used by the web server for communication. For default setups, this will be '80'; using SSL, for instance, will change this to whatever your defined secure HTTP port is.

http://example.com/server.php?a=1&b=2&c=3  ==>  80

$_SERVER['SERVER_SIGNATURE']: String containing the server version and virtual host name which are added to server-generated pages, if enabled.

http://example.com/server.php?a=1&b=2&c=3  ==>  Apache/2.2.3 (CentOS) Server at www.webtrafficexchange.com Port 80

$_SERVER['PATH_TRANSLATED']: Filesystem- (not document root-) based path to the current script, after the server has done any virtual-to-real mapping. (Note: As of PHP 4.3.2, PATH_TRANSLATED is no longer set implicitly under the Apache 2 SAPI in contrast to the situation in Apache 1, where it's set to the same value as the SCRIPT_FILENAME server variable when it's not populated by Apache. This change was made to comply with the CGI specification that PATH_TRANSLATED should only exist if PATH_INFO is defined. Apache 2 users may use AcceptPathInfo = On inside httpd.conf to define PATH_INFO.)

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['SCRIPT_NAME']: Contains the current script's path. This is useful for pages that need to point to themselves. The __FILE__ constant contains the full path and filename of the current (i.e. included) file.

http://example.com/server.php?a=1&b=2&c=3  ==>  /server.php

$_SERVER['REQUEST_URI']: The URI which was given in order to access this page; for instance, '/index.html'.

http://example.com/server.php?a=1&b=2&c=3  ==>  /server.php?a=1&b=2&c=3

$_SERVER['PHP_AUTH_DIGEST']: When doing Digest HTTP authentication this variable is set to the 'Authorization' header sent by the client (which you should then use to make the appropriate validation).

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['PHP_AUTH_USER']: When doing HTTP authentication this variable is set to the username provided by the user.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['PHP_AUTH_PW']: When doing HTTP authentication this variable is set to the password provided by the user.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['AUTH_TYPE']: When doing HTTP authentication this variable is set to the authentication type.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['PATH_INFO']: Contains any client-provided pathname information trailing the actual script filename but preceding the query string, if available. For instance, if the current script was accessed via the URL http://www.example.com/php/path_info.php/some/stuff?foo=bar, then $_SERVER['PATH_INFO'] would contain /some/stuff.

http://example.com/server.php?a=1&b=2&c=3  ==>  

$_SERVER['ORIG_PATH_INFO']: Original version of 'PATH_INFO' before processed by PHP. Not all web servers return values for this parameter..

http://example.com/server.php?a=1&b=2&c=3  ==>  

Here is an example of $_SERVER variable returned from a Centos 6.7 running nginx. There are a few parameters added by CloudFlare and Varnish Cache.

[USER] => apache
[HOME] => /var/www
[FCGI_ROLE] => RESPONDER
[SCRIPT_FILENAME] => /var/www/html/test.php
[QUERY_STRING] =>
[REQUEST_METHOD] => GET
[CONTENT_TYPE] =>
[CONTENT_LENGTH] =>
[SCRIPT_NAME] => /test.php
[REQUEST_URI] => /test.php
[DOCUMENT_URI] => /test.php
[DOCUMENT_ROOT] => /var/www/html
[SERVER_PROTOCOL] => HTTP/1.1
[GATEWAY_INTERFACE] => CGI/1.1
[SERVER_SOFTWARE] => nginx/1.0.15
[REMOTE_ADDR] => 127.0.0.1
[REMOTE_PORT] => 55419
[SERVER_ADDR] => 127.0.0.1
[SERVER_PORT] => 8080
[SERVER_NAME] => webtrafficexchange.com
[REDIRECT_STATUS] => 200
[HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36
    (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36
[HTTP_ACCEPT] => text/html,application/xhtml+xml,application/xml;q=0.9,
    image/webp,*/*;q=0.8
[HTTP_X_FORWARDED_PROTO] => https
[HTTP_CACHE_CONTROL] => max-age=0
[HTTP_ACCEPT_LANGUAGE] => en-US,en;q=0.8,ko;q=0.6
[HTTP_HOST] => www.webtrafficexchange.com
[HTTP_CF_VISITOR] => {"scheme":"https"}
[HTTP_CF_CONNECTING_IP] => 75.145.181.214
[HTTP_CF_RAY] => 26deac5b430e09a6-ORD
[HTTP_X_CLUSTER_CLIENT_IP] => 173.245.55.166
[HTTP_CF_IPCOUNTRY] => US
[HTTP_X_FORWARDED_PORT] => 80
[HTTP_UPGRADE_INSECURE_REQUESTS] => 1
[HTTP_ACCEPT_ENCODING] => gzip
[HTTP_X_FORWARDED_FOR] => 75.145.181.214, 173.245.55.166, 10.189.252.4
[HTTP_COOKIE] => __cfduid=d6475a34d2bdbe606d84b423e130caa761452700903;
[HTTP_X_VARNISH] => 1269279883
[PHP_SELF] => /test.php
[REQUEST_TIME] => 1454340371

To learn the differences between the PHP_SELF, SCRIPT_NAME and REQUEST_URI, please consult http://php.about.com/od/learnphp/qt/_SERVER_PHP.htm.

Share this post

Comments (0)

    No comment

Leave a comment

All comments are moderated. Spammy and bot submitted comments are deleted. Please submit the comments that are helpful to others, and we'll approve your comments. A comment that includes outbound link will only be approved if the content is relevant to the topic, and has some value to our readers.


Login To Post Comment