json_decode php returns string code example
Example 1: php decode json file
$json = json_decode(file_get_contents('/path/to/your/file.json'));
Example 2: json_decode
$value = '{"Name" : "Tamer"}';
json_decode($value);
$json = json_decode(file_get_contents('/path/to/your/file.json'));
$value = '{"Name" : "Tamer"}';
json_decode($value);