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 请求,例如:
$a = array('age' => 18); $rest->put('/api/users/9', $a);
您的其余 API 如何获取 $a 数组?
您可以在 处阅读请求正文php://input,但请注意它是易失性的,并且只能阅读一次*。
php://input
file_get_contents('php://input');
然后,您需要将其解析为 URL 以将其用作数组。
*详细信息在链接页面上
它应该在请求的正文中。