PHP stdClass 对象
我有点失落。
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,
不适合你吗?
So,
doesn't work for you?
我猜您正在变量上使用
print_r
,例如 $myVariable要访问对象使用的数据:
并尝试使用
var_dump
而不是 <代码> print_r 。var_dump
使信息更加完整。 (你有类型信息)。You are using
print_r
on a variable I guess, such $myVariableTo access the data of your object use :
And try using
var_dump
instead ofprint_r
. Information is a little completer withvar_dump
. (You have type information with it).