Home Backend Development PHP Tutorial Discuss how to obtain submitted data in PHP variable parsing order_PHP tutorial

Discuss how to obtain submitted data in PHP variable parsing order_PHP tutorial

Jul 15, 2016 pm 01:35 PM
php url variable back how Discuss submit data of Obtain parse this Link order

Since the link URL of the submission was not informed after submission, this BUG has survived to this day. However, this BUG does not appear in every submission. After several tests, it was found that it only occurs when multiple submissions are made in a row. Since the submitted form was relatively complex and was entered in several parts, it was suspected that an error occurred in the middle part.

The troubleshooting process starts with var_dump($_REQUEST) in each process, then the error link is found during the second consecutive submission. In the process of submitting the first form to the second form, the $_REQUEST array Change occurs. At this point, we need to take another look at the $_REQUEST array:

The manual says it contains variables submitted to the script via GET, POST and COOKIE mechanisms, so this array is not trustworthy. In this way, var_dump($_REQUEST) is decomposed into var_dump($_POST), var_dump($_GET), and var_dump($_COOKIE). The problem becomes clearer. It turns out that in order to save values ​​between multiple page forms, COOKIE was tried. Although the COOKIE is destroyed when the SESSION ends without setting the expire item, if multiple advertisements are submitted continuously in a session, the value of the form POST will be overwritten by the value previously saved in the COOKIE. The reason why there is only a partial error is that When saving to COOKIE, the COOKIE variable names are prefixed, except for the url variable, which still uses the same variable name.

The problem has been found, but there are new questions. With the same variable name, why does COOKIE cover POST and not the other way around? So we finally come to the variables_order setting item mentioned in the title. The original text in php.ini is as follows:

This directive describes the order in which PHP registers GET, POST, Cookie,
Environment and Built-in variables (G, P, C, E & S respectively, often
referred to as EGPCS or GPC). Registration is done from left to right, newer
values ​​override older values.

means that Settings describe the order of PHP parsing variables, including $_GET, $_POST, $_COOKIE, $_ENV, $_SERVER array.
The parsing order is from left to right, and the new value overwrites the old value after parsing. The default setting is EGPCS (Environment, GET, POST, Cookie, Server).
If it is set to "GP", it will cause PHP to completely ignore environment variables, cookies and server variables, and overwrite the variables of the same name of the GET method with variables of the POST method.

Conclusion:

As the manual says, $_REQUEST is an array that is not trustworthy. To try to avoid similar problems, you should explicitly use the $_POST or $_GET array when getting the submitted value.

In special cases, you can adjust the variables_order setting so that you can always get the submission data you want.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445938.htmlTechArticleSince the link URL of the submission was not informed after submission, this BUG has survived to this day. However, this BUG does not appear in every submission. After several tests, it was found that only in...
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles