Predefined variables represent all external variables as built-in environment variables, and error information as return headers. Superglobal variables are built-in variables that are always available in all scopes. They can be accessed within a function or method without executing global $variable
.
$GOBALS
refers to all variables available in the global scope, which are always available in PHP.
$_SERVER
Server and execution environment information, this contains more array elements, such as $_SERVER['PHP_SELFT']
, $_SERVER['SCRIPT_FILENAME']
, $_SERVER['SERVER_NAME']
, etc. . The items in this array are created by the web server, and every server is not guaranteed to serve all items.
$_GET
An array of variables passed to the current script via URL parameters.
$_POST
An array of variables passed to the current script via the HTTP POST method.
$_FILES
An array of files uploaded to the current script via HTTP POST.
$_REQUEST
By default, it contains arrays of $_GET
, $_POST
and $_COOKIE
. When running in command line mode, the argv
and argc
information will not be included, they will exist in the $_SERVER
array. The items of this array and their order depend on the configuration of PHP's variables_order
directive.
$_SESSION
The current script can use the array of SESSION variables to start a new session or reuse an existing session through session_start()
.
$_ENV
An array of variables passed to the current script through the environment. These variables are imported from the running environment of the PHP parser into the global namespace of PHP.
$_COOKIE
An array of variables passed to the current script through HTTP Cookies. Cookies can be set on the client through setcookie()
.
$php_errormsg
Contains the latest error message generated by PHP and is only available in the scope where the error occurred.
$HTTP_RAW_POST_DATA
Contains the raw data submitted by POST.
$http_response_header
contains the HTTP response header. Why was the test not successful in my system?
$argc
contains the number of arguments passed to the current script when running from the command line. The minimum value is 1. Only available when regiser_argc_argv
is turned on.
$argv
contains an array of arguments passed to the current script when running from the command line. The first argument is always the filename of the current script.
(Full text ends)
The above introduces the predefined variables - PHP manual notes, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

WindowsServerBackup是WindowsServer操作系统自带的一个功能,旨在帮助用户保护重要数据和系统配置,并为中小型和企业级企业提供完整的备份和恢复解决方案。只有运行Server2022及更高版本的用户才能使用这一功能。在本文中,我们将介绍如何安装、卸载或重置WindowsServerBackup。如何重置Windows服务器备份如果您的服务器备份遇到问题,备份所需时间过长,或无法访问已存储的文件,那么您可以考虑重新设置WindowsServer备份设置。要重置Windows

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


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 Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
