json_decode

今天在操作json_decode之后的数组的时候发现结构是这样的

带有stdClass上网直接搜索stdClass说是什么zend的保留函数云云

没有给出实际的操作方法

 

然后查了一下手册发现json_decode的第二个参数设置为true时返回array而并非object

mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )

所以加上第二个参数就ok了