I am trying to fetch the data from the JSON, working as expected in localhost but it's not working in server. Even I tried with the JSON placeholder API.
PHP file
<?php $url = 'https://jsonplaceholder.typicode.com/posts';
$jsondata = file_get_contents($url);
$obj = json_decode($jsondata, true);
var_dump($obj);
echo $obj[1]->title;
?>
I tried remove the true and tried with $obj = json_decode($jsondata);
Still it returns null.
The same code working fine in my localhost.