问题描述
除了 $_REQUEST
从 cookie 读取这一事实之外,还有什么理由让我应该使用 $_GET
和 $_POST
而不是 $_REQUEST?这样做的理论和实践原因是什么?
Besides the fact that $_REQUEST
reads from cookies, are there any reasons why I should use $_GET
and $_POST
instead of $_REQUEST
? What are theoretical and practical reasons for doing so?
推荐答案
当我只希望用户的某些数据返回某些数据时,我使用 $_REQUEST.
I use $_REQUEST when I just want certain data from the user to return certain data.
当请求有副作用时不要使用 $_REQUEST.产生副作用的请求应该是 POST(出于语义原因,也因为基本的 CSRF 内容,虚假的 img 标签可以在用户不知情的情况下点击任何 GET 端点).
Never use $_REQUEST when the request will have side effects. Requests that produce side effects should be POST (for semantic reasons, and also because of basic CSRF stuff, a false img tag can hit any GET endpoint without a user even knowing).
当 GET 或 POST 到一个页面会产生不同的结果时,应该使用 $_GET.
$_GET should be used when GETing or POSTing to a page will produce different results.
这篇关于为什么我应该使用 $_GET 和 $_POST 而不是 $_REQUEST?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!