How does PHP determine whether a GET request or a POST request?

Guanhui
Release: 2023-03-02 22:10:01
Original
4412 people have browsed it

How does PHP determine whether a GET request or a POST request?

How does PHP determine whether a GET request or a POST request?

First get the "REQUEST_METHOD" in the full variable "$_SERVER"; then use the function "strtoupper" to convert the value to uppercase; finally determine if the value is equal to GET, it is a GET request, and POST is the same reason.

Sample code

<?php
if($REQUEST_METHOD == “POST”){
echo "是POST过来滴";

}elseif($REQUEST_METHOD == “GET”){
echo "是GET过来滴";
}else{
echo "我也不知道怎么过来滴";
}
Copy after login

Recommended tutorial: "PHP"

The above is the detailed content of How does PHP determine whether a GET request or a POST request?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template