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.
我想使用 PUT 功能添加用户,(注册)我已经使用 POST 完成了此操作,但我不明白如何使用 PUT 执行此操作,我只是添加用户名和密码。
提出您需要自己处理的请求。数据像这样传到php
$putdata = fopen("php://input", "r");
尽管所有变量都在一个字符串中,但仍需要处理数据。取决于用于编码的方法会改变你的解码方式。例如,它可能是 JSON
这只能使用一次,因此请保留 putdata 变量
要知道它被 PUT 看
$_SERVER['REQUEST_METHOD']