News Feed
Jobs Feed
Sections




News Archive
Etienne Kneuss' Blog:
SplObjectStorage for a fast and secure object dictionary
January 08, 2009 @ 10:28:39

Etienne Kneuss has posted a look at using the SplObjectStorage functionality of the Standard PHP Library as a safe place to tuck away and protect your objects.

In PHP, you basically need two things to safely identify an object: a object index, the handle, and the class handlers which is how the object will react internally. This set of handlers is actually a pointer, and since disclosing valid pointers is not something that should be done, spl_object_hash is simply providing a MD5 hash of those two values concatenated.

Since arrays are hashed when they are created as well, your script is doubling the amount of work it has to do behind the scenes. Instead, Etienne suggests that you use a SplObjectStorage object instead of an array to keep objects inside. The unique identifier for it is then used directly (instead of rehashed, leaving it open for possible referencing collisions) to reference the object.

0 comments voice your opinion now!
splobjectstorage secure object store hash array


blog comments powered by Disqus

Similar Posts

Kae Verens' Blog: review: Object-Oriented Programming in PHP5

DevShed: Enforcing Object Types in PHP - Using the Type Hinting Feature in PHP 5

Gonzalo Ayuso's Blog: Checking the performance reading arrays with PHP

Tobias Schlitt's Blog: Object relation mapping in eZ Components

PHPImpact Blog: Static Factories vs Public Constructors


Community Events









Don't see your event here?
Let us know!


database event opinion development api release composer language interview framework unittest community testing example introduction functional object phpunit code zendframework2

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework