file_get_contents返回一个空字符串

时间:2015-11-05 20:51:30

标签: php

我将这个json发送到我的php网站(http://example.com/webhook/)作为来自第三方网站的帖子,但我得到的只是一个空数组。

{
  "listing_id": 0,
  "guest_id": 0,
  "confirmation_code": "confirmation code",
  "start_date": "2015-05-05",
  "nights": 1,
  "number_of_guests": 3,
  "listing_base_price": 399
}

为此,我在index.php文件中使用以下服务器端代码:

$json = file_get_contents('php://input');
echo $json;
$data = json_decode($json, True);

响应应该是json所以我无法使用var_dump()因此它返回的不是json。

0 个答案:

没有答案