GoLang spl_object_id

request it (323)
GoLang replacement for PHP's spl_object_id [edit | history]



Do you know a GoLang replacement for PHP's spl_object_id? Write it!

PHP spl_object_id

PHP original manual for spl_object_id [ show | php.net ]

spl_object_id

(PHP 7 >= 7.2.0)

spl_object_id Return the integer object handle for given object

Description

int spl_object_id ( object $obj )

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

object

Any object.

Return Values

An 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

<?php
$id 
spl_object_id($object);
$storage[$id] = $object;
?>

Notes

Note:

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