Summary of PHP super global variables
silicon1985 Summary of important PHP super global variablesPHP has 9 predefined variable arrays, which are summarized as follows:
1. $_SERVER
The $_SERVER super global variable contains information created by the web server, which provides information about the server and client configuration and the current request environment. Depending on the server, the variable value and number of variables in $_SERVER will be different, but generally you can find the variables defined in the CGI1.1 specification. These include:
$_SERVER[ 'HTTP_REFERER' ] ; The URL of the page that guides the user to the current location;
$_SERVER[ 'REMOTE_ADDR‘ ] ; Customer IP address ;
$_SERVER[ ’REQUEST_URI‘ ] ; The path part of the URL. If the URL is [url]http://www.example.com/blog/apache/index.html[/url], then the URI is /blog/apache/index.html.
$_SERVER[ 'HTTP_USER_AGENT' ] ; The customer's user agent generally provides information about the operating system and browser.
2. $_GET
The $_GET super global variable contains information about the parameters passed using the GET method. If the request URL is [url]http://www.example.com/index.html?cat=apache&id=157[/url], you can use the $_GET super global variable to access the following variables:
$_GET[ 'cat' ] = "apache" ;
$_GET[ 'id' ] = "157" ;
By default, the $_GET super global variable is the only way to access variables passed through the GET method.
3. $_POST
The $_POST super global variable contains information about the parameters passed with the POST method.
Through the script subscribe.php, you can use the following POST variables:
$_POST[ 'email' ] = " jason@example.com " ;
$_POST[ 'pswd' ] = "rainyday" ;
$_POST[ 'subscribe' ] = "subscribe!" ;
Like $_GET, by default the $_POST superglobal variable is the only way to access POST variables.
4. $_COOKIE
The $_COOKIE super global variable stores information passed to the script through the HTTP cookie. These cookies are generally set by a previously executed PHP script through the PHP function setcookie(). For example, suppose you use setcookie() to store a cookie named example.com with a value of ab2213. This value can be obtained later by calling $_COOKIE['example.com'].
5.$_FILES
The $_FILES super global variable contains information about the data uploaded to the server through the POST method. This super global variable is different from other variables. It is a two-dimensional array containing 5 elements. The first subscript indicates the file upload element name of the form; the second subscript is one of five predefined subscripts that describe a certain attribute of the uploaded file:
△ $_FILES[ 'upload-name' ][ 'name' ]; The file name of the file uploaded from the client to the server;
△ $_FILES[ 'upload-name' ][ 'type' ]; The MIME type of the uploaded file. Whether this variable is assigned a value depends on the browser's capabilities.
△ $_FILES[ 'upload-name' ][ 'size' ]; The size of the uploaded file (in bytes);
△ $_FILES[ 'upload-name' ][ 'tmp_name' ]; After uploading, the temporary name given before moving this file to its final location.
△ $_FILES[ 'upload-name' ][ 'error' ]; Upload status code. Although this variable is named error , this variable is actually filled in on success. It has five possible values:
■ UPLOAD_ERR_OK File uploaded successfully
■ UPLOAD_ERR_INI_SIZE The file size exceeds the maximum value specified by the upload_max_filesize directive.
■ UPLOAD_ERR_FORM_SIZE The file size exceeds the maximum value specified by the MAX_FILE_SIZE hidden form field parameter (optional).
■ UPLOAD_ERR_PARTIAL Only part of the file was uploaded
■ UPLOAD_ERR_NO_FILE No file specified in the upload form
6. $_ENV
The $_ENV super global variable provides information about the server environment where PHP parses. Variables in this array include:
△ $_ENV[ 'HOSTNAME' ] The host name of the server
△ $_ENV[ 'SHELL' ] system shell
7. $_REQUEST
The $_REQUEST super global variable is an all-rounder that records variables passed to the script through various methods, especially GET, POST and COOKIE. The order of these variables does not depend on the order in which they appear in the send script, but on the order specified by the variables_order configuration directive. It is recommended to use this super variable sparingly because it is not safe enough.
8.$_SESSION
The $_SESSION super global variable contains information related to all sessions. Registering session information gives you the convenience of being able to reference it throughout your site without having to explicitly pass the data via GET or POST.
9. $GLOBALS
$GLOBALS super global variable array can be considered as a superset of super global variables, including all variables in the global scope. Execute the following code to view all variables in $GLOBALS.
print '
' ;</p> <p> print_r ($GLOBALS);</p> <p> print '' ;

PHP函数介绍—strpos():检查变量是否为字符串在PHP中,is_string()是一个非常有用的函数,它用于检查变量是否为字符串。当我们需要确定一个变量是否为字符串时,is_string()函数可以帮助我们轻松实现这个目标。下面我们将学习关于is_string()函数的使用方式以及提供一些相关代码示例。is_string()函数的语法非常简单。它只需
![内部错误:无法创建临时目录 [已解决]](https://img.php.cn/upload/article/000/000/164/168171504798267.png)
Windows系统允许用户使用可执行/设置文件在您的系统上安装各种类型的应用程序。最近,许多Windows用户开始抱怨他们收到一个名为INTERNALERROR:cannotcreatetemporarydirectory在他们的系统上尝试使用可执行文件安装任何应用程序的错误。问题不仅限于此,而且还阻止用户启动任何现有的应用程序,这些应用程序也安装在Windows系统上。下面列出了一些可能的原因。运行可执行文件进行安装时不授予管理员权限。为TMP变量提供了无效或不同的路径。损坏的系

存储类指定变量的范围、生命周期和绑定。要完整定义变量,不仅需要提及其“类型”,还需要提及其存储类。变量名称标识计算机内存中的某个物理位置,其中分配了一组位来存储变量的值。存储类别告诉我们以下因素-变量存储在哪里(内存或CPU寄存器中)?如果没有初始化,变量的初始值是多少?变量的作用域是什么(可以访问变量的范围)?变量的生命周期是多长?生命周期变量的生命周期定义了计算机为其分配内存的持续时间(内存分配和释放之间的持续时间)。在C语言中,变量可以具有自动、静态或动态生命周期。自动-创建具有自动生命周

在Windows11上设置环境变量可以帮助您自定义系统、运行脚本和配置应用程序。在本指南中,我们将讨论三种方法以及分步说明,以便您可以根据自己的喜好配置系统。有三种类型的环境变量系统环境变量–全局变量处于最低优先级,可由Windows上的所有用户和应用访问,通常用于定义系统范围的设置。用户环境变量–优先级越高,这些变量仅适用于在该帐户下运行的当前用户和进程,并由在该帐户下运行的用户或应用程序设置。进程环境变量–具有最高优先级,它们是临时的,适用于当前进程及其子进程,为程序提供

在 PHP 中定义一个变量是不需要声明类型的,一开始给变量 $a 赋予一个整型值,后面又可以轻而易举地将其改变为其他类型。那在 PHP 的源码中是如何来存储这个变量 $a 的呢?带着这个疑问我们一起去看一看 PHP 的源码。

在前端开发中,我们经常会有一种场景:用户在与网页交互过程中需要等待数据的加载,此时通常会有一个loading效果显示,提醒用户等待。在Vue框架中,实现一个全局loading效果并不困难,下面我们来介绍一下如何实现。第一步:创建Vue插件我们可以创建一个名为loading的Vue插件,该插件可以在所有的Vue实例中引用。在插件中,我们需要实现以下两个方法:s

变量有三个类型:1、函数内定义的变量称为局部变量,其作用域仅限于函数内部;局部变量不是一直存在的,它只在定义它的函数被调用后存在,函数调用结束后这个局部变量就会被销毁。2、函数外定义的变量称为全局变量,其只需要在一个源文件中定义,就可以在所有源文件中使用;全局变量声明必须以var关键字开头,如果想要在外部包中使用全局变量的首字母必须大写。3、函数定义中的变量称为形式参数。

如果您是PHP开发者,您可能会时不时遇到“PHPNotice:Undefinedvariable”错误。这种错误是由于您尝试使用未定义的变量而引起的,它会在PHP代码中以警告的形式显示。虽然它通常不会导致应用程序崩溃,但影响程序的完整性和可靠性。在本篇文章中,我们将探讨此类PHP错误,并提供一些解决方法,帮助您避免此类错误。什么是“Undefined


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

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
