略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: spl_object_id

2024-04-28

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 $object): 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.

add a noteadd a note

User Contributed Notes 1 note

up
4
Daniel
1 year ago
Simple example:

<?php
   
class Test {}

   
$test1 = new Test;
   
$test1_id = spl_object_id( $test1 );
   
$test2 = new Test;
   
$test2_id = spl_object_id( $test2 );

   
var_dump( $test1_id === $test2_id );
   
var_dump( $test1_id );
   
var_dump( $test2_id );
?>

Returns
bool(false)
int(5288)
int(5287)

官方地址:https://www.php.net/manual/en/function.spl-object-id.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3