我終於確定我的JSON對象滑過了一個JSON驗證器。但是,當我嘗試解碼它返回null。我的JSON對象看起來像以下:php JSON對象返回null
[
{
"NAME": "Hearthstone",
"PLAYER1": "Rdu ",
"PLAYER2": "Savjz ",
"status": 2,
"meta": "LIVE"
},
{
"NAME": "LeagueofLegends",
"PLAYER1": "TeamKing",
"PLAYER2": "EDG",
"status": 2,
"meta": "28.12."
}
]
PHP解碼:
$json = file_get_contents("crawl_JSON.php");
$json_output = json_decode($json);
var_dump($json_output);
確保'crawl_JSON.php'在JSON之前或之後不輸出任何內容。 – Barmar 2014-12-27 19:00:45
'var_dump($ json)' – 2014-12-27 19:00:59
在上一個問題中,您是否被問過產生一個最簡單的例子?請每次都這樣做,這不會有幫助。 – 2014-12-27 19:06:00