PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ArrayIterator> <Fonctions SPL
Last updated: Fri, 10 Oct 2008

view this page in

spl_object_hash

(PHP 5 >= 5.2.0)

spl_object_hash Retourne l'identifiant de hashage pour un objet donné

Description

string spl_object_hash ( object $obj )

Cette fonction retourne un identifiant unique pour l'objet. Cet identifiant peut être utilisé comme clé de hashage pour stocker les objets ou pour les identifier.

Liste de paramètres

object

N'importe quel objet.

Valeurs de retour

Retourne une chaîne de caractères, unique pour chaque objet et qui est toujours la même pour le même objet.

Exemples

Exemple #1 Exemple avec spl_object_hash()

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



add a note add a note User Contributed Notes
spl_object_hash
planetbeing
06-Jul-2007 01:40
Note that the contents (properties) of the object are NOT hashed by the function, merely its internal handle and handler table pointer. This is sufficient to guarantee that any two objects simultaneously co-residing in memory will have different hashes. Uniqueness is not guaranteed between objects that did not reside in memory simultaneously, for example:

var_dump(spl_object_hash(new stdClass()), spl_object_hash(new stdClass()));

Running this alone will usually generate the same hashes, since PHP reuses the internal handle for the first stdClass after it has been dereferenced and destroyed when it creates the second stdClass.

ArrayIterator> <Fonctions SPL
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites