如何在 PHP 中打印 stdClass 对象的属性?

发布于 2024-12-10 02:44:03 字数 49 浏览 1 评论 0原文

我有一个包含标准类对象的数组。如何返回 stdClass 对象中的属性(打印出来)?

I have an array that contains standard class object. How can I return the properties (print them out) in a stdClass object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花之痕靓丽 2024-12-17 02:44:03

如果您只想打印,可以使用 var_dump()print_r()

var_dump($obj);
print_r($obj);

如果您想要所有属性及其值的数组,请使用 get_object_vars()

$properties = get_object_vars($obj);
print_r($properties);

If you just want to print you can use var_dump() or print_r().

var_dump($obj);
print_r($obj);

If you want an array of all properties and their values use get_object_vars().

$properties = get_object_vars($obj);
print_r($properties);
Saygoodbye 2024-12-17 02:44:03

您应该能够使用 var_dump($myObject); 看到它们

you should be able to see them using var_dump($myObject);

幽蝶幻影 2024-12-17 02:44:03

我用这种方式解决了这个问题:

echo $arrayName[0]->varname;

由于它是一个对象数组,我们使用 ->;访问对象属性/方法。

I have solved this problem in this way:

echo $arrayName[0]->varname;

As it is an array of objects, we use -> to access objects attributes/methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文