当前位置:  开发笔记 > 编程语言 > 正文

将stdClass对象转换为php中的关联数组

如何解决《将stdClass对象转换为php中的关联数组》经验,为你挑选了1个好方法。

我需要转换这个数组

Array ( 
[0] => stdClass Object 
     ( [title] => primo ) 
[1] => stdClass Object 
     ( [title] => secondo )) 

Array ( 
[primo] => primo
[secondo] => secondo ) 

尝试了不同的选项,包括类型转换,仍然没有找到正确的解决方案



1> Pupil..:

使用json_encode()和json_decode()

$arr = json_decode(json_encode($yourObject), TRUE);

json_decode()的第二个参数设置为TRUE.

功能定义:

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

这会将您的对象转换为关联数组.

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有