|
spl_object_idReturn the integer object handle for given object Description
int spl_object_id(object
$object )This function returns a unique identifier for the object. The object id is unique for the lifetime of the object. Once the object is destroyed, its id may be reused for other objects. This behavior is similar to spl_object_hash. Parameters
Return ValuesAn integer identifier that is unique for each currently existing object and is always the same for each object. Examples
Example #1 A spl_object_id example
Notes
|