Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find Object ID in PHP?

Tags:

object

php

I'm using PHP 5.2. I'd like to find a way to output a unique id for every object, so it's easy when looking over logs to see which objects are the same.

In Ruby, I'd just say object.object_id to get Ruby's internal identifier for the object. There doesn't seem to be an obvious way to do this in PHP.

Is there is a built-in way of doing this? If there isn't, can you offer any other suggestions?

like image 802
Joel Avatar asked Nov 21 '08 07:11

Joel


3 Answers

Use spl_object_hash() for that.

It returns an unique identifier for each object instance, and not the name of the class, so it seems more suitable for you.

Edit:

For PHP < 5.2.x users, see this answer.

like image 154
azkotoki Avatar answered Nov 03 '22 17:11

azkotoki


There is currently no way to do this in PHP, as of version 5.3.6.

spl_object_hash() does not do what you want - because it recycles the identifiers when objects get deleted, this will lead to errors in (for example) an object-relational mapper trying to keep track of objects in a session.

The description at the top of the documentation page ("This function returns a unique identifier for the object. This id can be used as a hash key for storing objects or for identifying an object.") is wrong - the truth is revealed in the note on that page: "When an object is destroyed, its hash may be reused for other objects", or in other words, the function does not always return a unique identifier, and can not always be used for storing or identifying objects.

The technique demonstrated in this comment may work in some cases, but it not reliable and will not work consistently either, since attempting to access an undefined property will invoke the __get() and __set() magic methods, the results of which are unpredictable.

In conclusion, the short answer to your question (unfortunately) is "no" - there is no such method in PHP, and there is no way to write a method like this that will work consistently for any object.

If you would like to see this feature added to PHP, please vote and/or comment here:

http://bugs.php.net/bug.php?id=52657

like image 26
mindplay.dk Avatar answered Nov 03 '22 19:11

mindplay.dk


⚠️ PHP 7.2.0 introduces spl_object_id()!

$test = (object)[];
var_dump(spl_object_id($test)); # int(1)
Caveat emptor(?):

When an object is destroyed, its id may be reused for other objects.

like image 21
i336_ Avatar answered Nov 03 '22 17:11

i336_