如何在 PHP 中打印 stdClass 对象的属性?
我有一个包含标准类对象的数组。如何返回 stdClass 对象中的属性(打印出来)?
I have an array that contains standard class object. How can I return the properties (print them out) in a stdClass object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只想打印,可以使用
var_dump()
或print_r()
。如果您想要所有属性及其值的数组,请使用
get_object_vars()
。If you just want to print you can use
var_dump()
orprint_r()
.If you want an array of all properties and their values use
get_object_vars()
.您应该能够使用
var_dump($myObject);
看到它们you should be able to see them using
var_dump($myObject);
我用这种方式解决了这个问题:
由于它是一个对象数组,我们使用 ->;访问对象属性/方法。
I have solved this problem in this way:
As it is an array of objects, we use -> to access objects attributes/methods.