PHP stdClass 对象

发布于 2024-11-09 06:51:48 字数 246 浏览 0 评论 0原文

我有点失落。

使用 print_r 我得到这些结果

stdClass Object ( [distlat] => 0 [distlng] => 0 [id] => 380 ) 

,但如何回显结果?

就像 stdClass->distlat->$distlat

请给我一个提示。

I'm a bit lost.

with print_r I get these results

stdClass Object ( [distlat] => 0 [distlng] => 0 [id] => 380 ) 

but how can echo the results?

like stdClass->distlat->$distlat ?

please give me a hint.

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

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

发布评论

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

评论(2

对你再特殊 2024-11-16 06:51:48

那么,

echo $object->distlat;
echo $object->distlng;

不适合你吗?

So,

echo $object->distlat;
echo $object->distlng;

doesn't work for you?

花想c 2024-11-16 06:51:48

我猜您正在变量上使用 print_r ,例如 $myVariable

要访问对象使用的数据:

echo $myVariable->distlat;
echo $myVariable->distlng;
echo $myVariable->id;

并尝试使用 var_dump 而不是 <代码> print_r 。 var_dump 使信息更加完整。 (你有类型信息)。

You are using print_r on a variable I guess, such $myVariable

To access the data of your object use :

echo $myVariable->distlat;
echo $myVariable->distlng;
echo $myVariable->id;

And try using var_dump instead of print_r. Information is a little completer with var_dump. (You have type information with it).

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