次の短いスクリプトに注目してください。
$array = array('stuff' => 'things');
print_r($array);
//prints - Array ( [stuff] => things )
$arrayEncoded = json_encode($array);
echo $arrayEncoded . "<br />";
//prints - {"stuff":"things"}
$arrayDecoded = json_decode($arrayEncoded);
print_r($arrayDecoded);
//prints - stdClass Object ( [stuff] => things )
PHP が JSON オブジェクトをクラスに変換するのはなぜですか?
json_encoded
その場合、配列はまったくjson_decoded
同じ結果を生成するのではないでしょうか?
ベストアンサー1
$arrayDecoded = json_decode($arrayEncoded, true);
配列を返します。