如何在php中获取application / json类型的内容?

时间:2015-10-08 06:50:53

标签: php header

我使用file_get_contents('php://input'),但有时它不会工作。我使用getallheaders()检查了标头,Content-Length始终是内容的大小,但有时file_get_contents('php://input')会返回null。

1 个答案:

答案 0 :(得分:1)

试试这个:

$handle = fopen('php://input','r');
$jsonInput = fgets($handle);
$decoded = json_decode($jsonInput,true);

  //$decoded['tag'] you data