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?

Guanhui
GuanhuiOriginal
2020-07-22 17:05:174215browse

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

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!

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