The purpose of this RFC is to introduce a magic method that will allow objects to serve as hash keys.
In PHP array keys can be only represented as numbers and strings. However, there already are several classes that represent different kinds of numbers (such as GMP objects) and some objects can also represent strings (e.g. Unicode strings) or string-like objects. It would be convenient to be able to use such objects as array keys to.
It could be achieved as conversion to string, but this is not ideal since object's string representation does not always match object's identity and there may be case where human-readable string may be different from value for the purposes of hashing. Also, some object may prefer to produce numeric index.
Create a new magic method, __hash() which is called when object is supplied as a hash key, and returns string or integer that is used as the hash key.
A number of languages implement the same facility, namely:
The method should produce a value which is acceptable as a key (not including objects), otherwise the engine will still produce an illegal offset type error. The objects not having this method implemented would produce an illegal offset type error when used in hash key position as before.
<?php class Foo { public function __hash() { return "Foo"; } } $foo = new Foo(); $test = [ $foo => true ];
Inheritance shall work as any other magic method:
<?php class Foo { public function __hash() { return "Foo"; } } class Bar extends Foo { /* shall use Foo::__hash unless Bar::__hash is implemented */ } $bar = new Bar(); $test = [ $bar => true ];
Returning a non-scalar shall fail as it did before:
<?php class Foo { public function __hash() { return []; } } $foo = new Foo(); $test = [ $foo => true ];
Shall yield:
Warning: Illegal offset type in %s on line %d
The current behavior of __toString is unchanged.
Should not break anything as we don't allow this now.
Targeted for PHP 7
No impact on SAPIs
If somebody implements something like ArrayAccess they may want to update it to accommodate objects.
Since objects are run-time, should not have any effects on opcache.
New magic method requires 2/3 majority. The vote also includes choice for the name - __hash or __toKey. Vote for either is counted as the vote for the proposal.
The vote runs from December 16, 2014 to the end of day (PDT) January 6, 2015.
Discussed here:
- Using __toString for the key conversion, for the reasons discussed above. - Supporting the use of objects for string indexes