Nerede o kocaman json dize aldın?
Json bazı yönlerden hatalı olup olmadığını json_decode
a> belgelerine göre, sadece ben brother.php denediğimde alıyorum ne olduğu, null dönecektir
// the following strings are valid JavaScript but not valid JSON
// the name and value must be enclosed in double quotes
// single quotes are not valid
$bad_json = "{ 'bar': 'baz' }";
json_decode($bad_json); // null
// the name must be enclosed in double quotes
$bad_json = '{ bar: "baz" }';
json_decode($bad_json); // null
// trailing commas are not allowed
$bad_json = '{ bar: "baz", }';
json_decode($bad_json); // null
EDIT
brother
birkaç noktalar biçimlendirilmiş iken ben geçti JSONLint
, a JSON validator, and, as expected, the brother+a
dosyası ile json dosyaları hem koştu.