I have a JSON object, but I can't parse it in PHP.
$data = file_get_contents("http://noticiasjson.blob.core.windows.net/json3/super/map_minuto.json");
$json = json_decode($data, true);
var_dump($json);
The result is null.
What am I doing wrong?
I have a JSON object, but I can't parse it in PHP.
$data = file_get_contents("http://noticiasjson.blob.core.windows.net/json3/super/map_minuto.json");
$json = json_decode($data, true);
var_dump($json);
The result is null.
What am I doing wrong?