JSONファイルからPHPにデータをロードしようとしましたが、私のouptはemtpyの問題ですか?PHPロードjsonデータ、出力が空です
JSON:
{
"drinks":[
"1" {"coffee": "zwart", "country":"afrika"},
"2" {"tea": "thee", "country":"china"},
"3" {"water": "water", "country":"netherlands"},
]
}
PHP:
<?php
$str = file_get_contents('data.json');
$json = json_decode($str, true);
$drinks = $json['drinks'][0][coffee];
echo $drinks;
?>
コロンを追加してみてください'' 1 ': '' 1':{.... ' – Veniamin
のようになります.jsonは無効です。 –
Jsonは無効です! –