json_encode/json_decode - PHP で配列の代わりに stdClass を返します 質問する

json_encode/json_decode - PHP で配列の代わりに stdClass を返します 質問する

次の短いスクリプトに注目してください。

$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);

配列を返します。

おすすめ記事