15

我正在使用 curl 发送这个:

curl -i -H "Accept: application/json" -H "Content-type: application/json" -X POST -d "{firstname:james}" http://hostname/index.php

我正在尝试在 index.php 中显示这样的 POST

<?php
die(var_dump($_POST)); 
?>

哪个输出

array(0) {
}

我一定对通过 POST 发送 JSON 数据有误解

感谢您的时间

4

2 回答 2

39

$_POST是一个数组,仅当您以 URL 编码格式发送 POST 正文时才会填充。PHP 不会自动解析 JSON,因此不会填充$_POST数组。您需要获取原始 POST 正文并自己解码 JSON:

$json = file_get_contents('php://input');
$values = json_decode($json, true);
于 2012-08-16T15:40:27.717 回答
7

$_POST仅当您发送编码的表单数据时才有效。您正在发送 JSON,因此 PHP 无法将其解析为$_POST数组。

您需要直接从 POST 正文中读取。

$post = fopen('php://input', r);
$data = json_decode(stream_get_contents($post));
fclose($post);
于 2012-08-16T15:40:30.217 回答