Home Backend Development PHP Problem Personal 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>
Copy after login
$name = $_GET[&#39;username&#39;];
$age = $_GET[&#39;age&#39;];
echo "<br>姓名为:".$name;
echo "<br>年龄为:".$age;
Copy after login

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>
Copy after login
$num1 = $_POST[&#39;num1&#39;];
$num2 = $_POST[&#39;num2&#39;];
$result = $num1 + $num2;
echo "相加计算的结果为:",$result;
Copy after login

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 of this Website
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

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8 JIT (Just-In-Time) Compilation: How it improves performance. PHP 8 JIT (Just-In-Time) Compilation: How it improves performance. Mar 25, 2025 am 10:37 AM

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

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 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 Encryption: Symmetric vs. asymmetric encryption. PHP Encryption: Symmetric vs. asymmetric encryption. Mar 25, 2025 pm 03:12 PM

The article discusses symmetric and asymmetric encryption in PHP, comparing their suitability, performance, and security differences. Symmetric encryption is faster and suited for bulk data, while asymmetric is used for secure key exchange.

How do you retrieve data from a database using PHP? How do you retrieve data from a database using PHP? Mar 20, 2025 pm 04:57 PM

Article discusses retrieving data from databases using PHP, covering steps, security measures, optimization techniques, and common errors with solutions.Character count: 159

PHP Authentication & Authorization: Secure implementation. PHP Authentication & Authorization: Secure implementation. Mar 25, 2025 pm 03:06 PM

The article discusses implementing robust authentication and authorization in PHP to prevent unauthorized access, detailing best practices and recommending security-enhancing tools.

What is the purpose of prepared statements in PHP? What is the purpose of prepared statements in PHP? Mar 20, 2025 pm 04:47 PM

Prepared statements in PHP enhance database security and efficiency by preventing SQL injection and improving query performance through compilation and reuse.Character count: 159

What is the purpose of mysqli_query() and mysqli_fetch_assoc()? What is the purpose of mysqli_query() and mysqli_fetch_assoc()? Mar 20, 2025 pm 04:55 PM

The article discusses the mysqli_query() and mysqli_fetch_assoc() functions in PHP for MySQL database interactions. It explains their roles, differences, and provides a practical example of their use. The main argument focuses on the benefits of usin

See all articles