Home > Article > Backend Development > 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 "我也不知道怎么过来滴"; }
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!