Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于这些方法只是在 $_GET 和 $_POST 超全局变量中设置值,有人可以告诉我使用这些方法而不是直接设置值有什么意义吗?我觉得我错过了什么。
最好的论据是:
隐藏 supergloabals,以便您的代码在 PHP 的未来版本修改、弃用或删除它们的功能时仍然有效,就像使用$HTTP_POST_VARS等所做的那样。
$HTTP_POST_VARS
在 Zend Framework 的未来版本中,可能需要向setQuery()和函数添加额外的setPost()功能。
setQuery()
setPost()