Data Structures
PHP Manual

The Hashable interface

(Não há informação de versão disponível, talvez apenas no SVN)

Introdução

Hashable is an interface which allows objects to be used as keys. It’s an alternative to spl_object_hash(), which determines an object’s hash based on its handle: this means that two objects that are considered equal by an implicit definition would not treated as equal because they are not the same instance.

hash() is used to return a scalar value to be used as the object's hash value, which determines where it goes in the hash table. While this value does not have to be unique, objects which are equal must have the same hash value.

equals() is used to determine if two objects are equal. It's guaranteed that the comparing object will be an instance of the same class as the subject.

Resumo da Interface

Ds\Hashable {
/* Métodos */
abstract public bool equals ( object $obj )
abstract public mixed hash ( void )
}

Índice


Data Structures
PHP Manual