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.
我正在开发一个 API REST,我希望我的代码能够区分 GET HTTP HEADER 和 DELETE HTTP HEADER 以返回所要求的信息或从数据库中删除此信息。
谢谢。
你可以使用这个:
$_SERVER['REQUEST_METHOD']
请记住,除了 PUT 和 DELETE 之外,并非所有浏览器和某些服务器实现都支持。您可以使用 Rails 方式,并将 _method 参数传递给 POST/GET 调用。