一尘不染

json_encode / json_decode-在PHP中返回stdClass而不是Array

json

观察这个小脚本:

$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产生完全相同的结果?


阅读 231

收藏
2020-07-27

共1个答案

一尘不染

采取在的第二个参数仔细看看json_decode($json, $assoc, $depth)https://secure.php.net/json_decode

2020-07-27