尝试接收 JSON POST 请求时,遇到无法解码的问题数据。各种方法无法产生任何输出或返回 null。
要成功接收 JSON POST 数据,请将代码中的“operacion”替换为“operation”。
$data = json_decode(file_get_contents('php://input'), true); print_r($data); echo $data["operation"];
此外,回显来自 php://input 的 JSON 字符串以验证其内容:
echo file_get_contents('php://input');
以上是如何在 PHP 中正确解码 JSON POST 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!