複数のオブジェクトを含む JSON 配列がありjson_decode
、関連配列を作成するために使用しようとしています。
サンプルデータ
$json='[{
type: "cool",
category: "power",
name: "Robert Downey Jr.",
character: "Tony Stark / Iron Man",
bio: "cool kid"
},
{
type: "cool",
category: "power",
name: "Chris Hemsworth",
character: "Thor",
bio: "cool kid"
},
{
type: "NotCool",
category: "nothing",
name: "Alexis Denisof",
character: "The Other",
bio: "cool kid"
}]';
これが私がやっていることです:
$data = json_decode($json, true);
結果が得られますNULL
。私は何を間違っていますか?
(私はPHPが初めてです。)