我正在使用 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 数据有误解
感谢您的时间