spl_object_id Return the integer object handle for given object

发表日期:2021-07-01 08:56:26 | 来源: | | 浏览(477) 分类:SPL 函数

spl_object_id

(PHP 7 >= 7.2.0, PHP 8)

spl_object_id Return the integer object handle for given object

说明

spl_object_id(object $obj): int

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().

参数

object

Any object.

返回值

An integer identifier that is unique for each currently existing object and is always the same for each object.

范例

示例 #1 A spl_object_id() example

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

注释

注意:

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

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。