PHP 获取对象的索引
可能的重复:
在 PHP 中获取对象的实例 ID
我是新手对于 OOP,我有一个对象。如果我:
var_dump($obj);
我得到:
object(stdClass)[55]
public 'date' => int 1295297161
public 'id' => int 11
如何检索“55”?
Possible Duplicate:
Get Instance ID of an Object in PHP
I'm new to OOP and I have an object. If I:
var_dump($obj);
I get:
object(stdClass)[55]
public 'date' => int 1295297161
public 'id' => int 11
How can I retrieve the "55"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如其他人提到的,如果不解析 var_dump 的输出,您将无法读取它。但是,如果您正在寻找一种唯一标识对象的方法,那么您应该使用
spl_object_hash
< /a>.As others have mentioned you can't read it, without parsing the output of
var_dump
. But if all you are looking for is a way to uniquely identify an object, then you should usespl_object_hash
.