What are the predefined variables in PHP?
#Predefined variables are also called super global variables.
definition:
Predefined variables are variables defined by the system itself and can be used directly. Predefined variables all exist in the form of arrays.
There are many kinds of predefined PHP, including our get, post, etc., which are all predefined variables of PHP. Let's take a look at how these predefined variables are used.
1.$_GET variable
$_GET variable will be "automatically stored" (saved/loaded) submitted GET data into a file.
The GET data is the data submitted when a page is requested in "get" mode.
Code Demonstration
Create a form with two input boxes that can output numbers and submit
<form action="1.php" method="get"> 姓名:<input type="text" name="username"> <br> 年龄:<input type="text" name="age"> <br> <input type="submit" value="提交"> </form>
$name = $_GET['username']; $age = $_GET['age']; echo "<br>姓名为:".$name; echo "<br>年龄为:".$age;
2 The .$_POST
#$_POST variable will "automatically store" (save/load) the POST data submitted to a file.
The POST data is the data submitted in the "post" mode in a form
Code demonstration
There is a form with two inputs Box, you can fill in numbers, there is a "submit button", click submit, you can calculate their sum and output
<form action="1.php" method="POST"> 数字1 <input type="text" name="num1"> <br> 数字2 <input type="text" name="num2"> <br> <input type="submit" value="计算"> </form>
$num1 = $_POST['num1']; $num2 = $_POST['num2']; $result = $num1 + $num2; echo "相加计算的结果为:",$result;
3.$_REQUEST
Represents the collection of data submitted by the browser through the "get" method or the "post" method.
That is: it can receive both get data and post data!
Usually, a form only submits one form of data, either get data or post data!
4.$_SERVER
It represents some "basic information" or system information on the client or server side in any request
Commonly used ones are:
PHP_SELF: Indicates the currently requested web page address (excluding the domain name part)
SERVER_NAME: Indicates the current Requested server name
SERVER_ADDR: Indicates the currently requested server IP address
DOCUMENT_ROOT: Indicates the currently requested website physical path (apache settings site That one)
REMOTE_ADDR: Indicates the IP address of the currently requested client
SCRIPT_NAME: Indicates the current web page address
Summary:
In this way, we can obtain information such as user session, user operating system environment and local operating system environment through these predefined variables.
The above is the detailed content of Personal insights on predefined variables in PHP. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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