


PHP predefines $_SERVER instance, and all $_SERVER starting with are predefined service variables.
<style><span> body{ background</span>:<span>#</span><span>EEE;</span><span> } </span></style> <?<span>php </span><span>header</span>("Content-type:text/html;charset=utf8"<span>); </span><span>echo</span> "error_reporting=>".<span>error_reporting</span>(<span>E_ALL</span>)."<br>"<span>; </span><span>echo</span> "PHP_SELF=>".<span>$_SERVER</span>['PHP_SELF']."<br>"; <span>#</span><span>当前正在执行脚本的文件名,与 document root相关。</span><span>echo</span> "argv=>".<span>$_SERVER</span>['argv']."<br>"; <span>#</span><span>传递给该脚本的参数。</span><span>echo</span> "argc=>".<span>$_SERVER</span>['argc']."<br>"; <span>#</span><span>包含传递给程序的命令行参数的个数(如果运行在命令行模式)。</span><span>echo</span> "GATEWAY_INTERFACE=>".<span>$_SERVER</span>['GATEWAY_INTERFACE']."<br>"; <span>#</span><span>服务器使用的 CGI 规范的版本。例如,“CGI/1.1”。</span><span>echo</span> "SERVER_NAME=>".<span>$_SERVER</span>['SERVER_NAME']."<br>"; <span>#</span><span>当前运行脚本所在服务器主机的名称。</span><span>echo</span> "SERVER_SOFTWARE=>".<span>$_SERVER</span>['SERVER_SOFTWARE']."<br>"; <span>#</span><span>服务器标识的字串,在响应请求时的头部中给出。</span><span>echo</span> "SERVER_PROTOCOL=>".<span>$_SERVER</span>['SERVER_PROTOCOL']."<br>"; <span>#</span><span>请求页面时通信协议的名称和版本。例如,“HTTP/1.0”。</span><span>echo</span> "REQUEST_METHOD=>".<span>$_SERVER</span>['REQUEST_METHOD']."<br>"; <span>#</span><span>访问页面时的请求方法。例如:“GET”、“HEAD”,“POST”,“PUT”。</span><span>echo</span> "REQUEST_TIME=>".<span>date</span>("Y-m-d H:s:i", <span>$_SERVER</span>['REQUEST_TIME'])."<br>"; <span>#</span><span>请求开始的时间戳</span><span>echo</span> "QUERY_STRING=>".<span>$_SERVER</span>['QUERY_STRING']."<br>"; <span>#</span><span>查询(query)的字符串。</span><span>echo</span> "DOCUMENT_ROOT=>".<span>$_SERVER</span>['DOCUMENT_ROOT']."<br>"; <span>#</span><span>当前运行脚本所在的文档根目录。在服务器配置文件中定义。</span><span>echo</span> "HTTP_ACCEPT=>".<span>$_SERVER</span>['HTTP_ACCEPT']."<br>"; <span>#</span><span>当前请求的 Accept: 头部的内容。</span><span>echo</span> "HTTP_ACCEPT_CHARSET=>".<span>$_SERVER</span>['HTTP_ACCEPT_CHARSET']."<br>"; <span>#</span><span>当前请求的 Accept-Charset: 头部的内容。例如:“iso-8859-1,*,utf-8”。</span><span>echo</span> "HTTP_ACCEPT_ENCODING=>".<span>$_SERVER</span>['HTTP_ACCEPT_ENCODING']."<br>"; <span>#</span><span>当前请求的 Accept-Encoding: 头部的内容。例如:“gzip”。</span><span>echo</span> "HTTP_ACCEPT_LANGUAGE=>".<span>$_SERVER</span>['HTTP_ACCEPT_LANGUAGE']."<br>"; <span>#</span><span>当前请求的 Accept-Language: 头部的内容。例如:“en”。</span><span>echo</span> "HTTP_C>$_SERVER['HTTP_CONNECTION']."<br>"; <span>#</span><span>当前请求的 Connection: 头部的内容。例如:“Keep-Alive”。</span><span>echo</span> "HTTP_HOST=>".<span>$_SERVER</span>['HTTP_HOST']."<br>"; <span>#</span><span>当前请求的 Host: 头部的内容。</span><span>echo</span> "HTTP_REFERER=>".<span>$_SERVER</span>['HTTP_REFERER']."<br>"; <span>#</span><span>a标签跳转链接到当前页面的前一页面的 URL 地址。</span><span>echo</span> "HTTP_USER_AGENT=>".<span>$_SERVER</span>['HTTP_USER_AGENT']."<br>"; <span>#</span><span>当前请求的 User-Agent: 头部的内容。</span><span>echo</span> "HTTPS=>".<span>$_SERVER</span>['HTTPS']."<br>"; <span>#</span><span>如果通过https访问,则被设为一个非空的值(on),否则返回off</span><span>echo</span> "REMOTE_ADDR=>".<span>$_SERVER</span>['REMOTE_ADDR']."<br>"; <span>#</span><span>正在浏览当前页面用户的 IP 地址。</span><span>echo</span> "REMOTE_HOST=>".<span>$_SERVER</span>['REMOTE_HOST']."<br>"; <span>#</span><span>正在浏览当前页面用户的主机名。</span><span>echo</span> "REMOTE_PORT=>".<span>$_SERVER</span>['REMOTE_PORT']."<br>"; <span>#</span><span>用户连接到服务器时所使用的端口。</span><span>echo</span> "SCRIPT_FILENAME=>".<span>$_SERVER</span>['SCRIPT_FILENAME']."<br>"; <span>#</span><span>当前执行脚本的绝对路径名。</span><span>echo</span> "SERVER_ADMIN=>".<span>$_SERVER</span>['SERVER_ADMIN']."<br>"; <span>#</span><span>管理员信息</span><span>echo</span> "SERVER_PORT=>".<span>$_SERVER</span>['SERVER_PORT']."<br>"; <span>#</span><span>服务器所使用的端口</span><span>echo</span> "SERVER_SIGNATURE=>".<span>$_SERVER</span>['SERVER_SIGNATURE']."<br>"; <span>#</span><span>包含服务器版本和虚拟主机名的字符串。</span><span>echo</span> "PATH_TRANSLATED=>".<span>$_SERVER</span>['PATH_TRANSLATED']."<br>"; <span>#</span><span>当前脚本所在文件系统(不是文档根目录)的基本路径。</span><span>echo</span> "SCRIPT_NAME=>".<span>$_SERVER</span>['SCRIPT_NAME']."<br>"; <span>#</span><span>包含当前脚本的路径。这在页面需要指向自己时非常有用。</span><span>echo</span> "REQUEST_RUI=>".<span>$_SERVER</span>['REQUEST_URI']."<br>"; <span>#</span><span>访问此页面所需的 URI。例如,“/index.html”。</span><span>echo</span> "__FILE__=>".<span>__FILE__</span>."<br>";
The above introduces the PHP predefined $_SERVER instance. All $_SERVER starting with are predefined service variables. , including relevant content, I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

HTTP status code 520 means that the server encountered an unknown error while processing the request and cannot provide more specific information. Used to indicate that an unknown error occurred when the server was processing the request, which may be caused by server configuration problems, network problems, or other unknown reasons. This is usually caused by server configuration issues, network issues, server overload, or coding errors. If you encounter a status code 520 error, it is best to contact the website administrator or technical support team for more information and assistance.

HTTP status code 403 means that the server rejected the client's request. The solution to http status code 403 is: 1. Check the authentication credentials. If the server requires authentication, ensure that the correct credentials are provided; 2. Check the IP address restrictions. If the server has restricted the IP address, ensure that the client's IP address is restricted. Whitelisted or not blacklisted; 3. Check the file permission settings. If the 403 status code is related to the permission settings of the file or directory, ensure that the client has sufficient permissions to access these files or directories, etc.

WindowsServerBackup is a function that comes with the WindowsServer operating system, designed to help users protect important data and system configurations, and provide complete backup and recovery solutions for small, medium and enterprise-level enterprises. Only users running Server2022 and higher can use this feature. In this article, we will explain how to install, uninstall or reset WindowsServerBackup. How to Reset Windows Server Backup If you are experiencing problems with your server backup, the backup is taking too long, or you are unable to access stored files, then you may consider resetting your Windows Server backup settings. To reset Windows

Understand the meaning of HTTP 301 status code: common application scenarios of web page redirection. With the rapid development of the Internet, people's requirements for web page interaction are becoming higher and higher. In the field of web design, web page redirection is a common and important technology, implemented through the HTTP 301 status code. This article will explore the meaning of HTTP 301 status code and common application scenarios in web page redirection. HTTP301 status code refers to permanent redirect (PermanentRedirect). When the server receives the client's

HTTP Status Code 200: Explore the Meaning and Purpose of Successful Responses HTTP status codes are numeric codes used to indicate the status of a server's response. Among them, status code 200 indicates that the request has been successfully processed by the server. This article will explore the specific meaning and use of HTTP status code 200. First, let us understand the classification of HTTP status codes. Status codes are divided into five categories, namely 1xx, 2xx, 3xx, 4xx and 5xx. Among them, 2xx indicates a successful response. And 200 is the most common status code in 2xx

In today's era of rapid technological development, programming languages are springing up like mushrooms after a rain. One of the languages that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

Solution: 1. Check the Content-Type in the request header; 2. Check the data format in the request body; 3. Use the appropriate encoding format; 4. Use the appropriate request method; 5. Check the server-side support.
