search
HomeBackend DevelopmentPHP ProblemPersonal insights on predefined variables in PHP

Personal insights on predefined variables in PHP

Apr 30, 2020 pm 04:23 PM
Predefined variables

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[&#39;username&#39;];
$age = $_GET[&#39;age&#39;];
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[&#39;num1&#39;];
$num2 = $_POST[&#39;num2&#39;];
$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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
ACID vs BASE Database: Differences and when to use each.ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PM

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

PHP Secure File Uploads: Preventing file-related vulnerabilities.PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PM

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.

PHP Input Validation: Best practices.PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PM

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.

PHP API Rate Limiting: Implementation strategies.PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PM

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

PHP Password Hashing: password_hash and password_verify.PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PM

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

OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PM

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.

PHP XSS Prevention: How to protect against XSS.PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PM

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

PHP Interface vs Abstract Class: When to use each.PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

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

SublimeText3 Mac version

God-level code editing software (SublimeText3)