Can someone explain how PHP implements associative arrays? What underlying data structure does PHP use? Does PHP hash the key and store it in some kind of hash map? I am curious because I was wondering what the performance of associative arrays where when inserting and searching for keys.
The highest voted answer link is broken and doesn't give that much explanation.
PHP is written in C and the underlying structure is just a C array. C arrays are just chunks of memory. The indexes in C arrays must be continuous, you can't have an index 0 and an index 1000 that comes after it. To make associative array keys work, before they are added to the C array, they are converted to proper C indices via a hash function.
For a full explanation, I found this link to be much more informative.
http://nikic.github.io/2012/03/28/Understanding-PHPs-internal-array-implementation.html
HashMap
? Thank you! –
Elaterite HashTable
datatype in php5, but everything is zen engine now so they use zend_hash which still does use hashtables. You can read up more on it at: phpinternalsbook.com/php5/hashtables.html –
Unproductive O(n)
operation. –
Elaterite It's a hash table. The type declaration and hashing function are here:
http://svn.php.net/viewvc/php/php-src/trunk/Zend/zend_hash.h?view=markup
There is a light weight array and a linked list within the spl (standard php lib)
Well, for what it is worth, all PHP arrays are Associative arrays.
@EBGreen is correct.
Which gives you some interesting performance problems, especially when treating an array as a list and using the [] (array add) operator. PHP doesn't seem to cache the largest numeric key and add one to it, instead it seems to traverse all of the keys to find what the next numeric key should be. I've rewritten scripts in python because of PHP's dismal array-as-a-list performance.
Associative arrays have the standard dict/hash performance overhead.
nNextFreeElement
... –
Aylesbury It's all hash tables, according to sources in various web forums: http://www.usenet-forums.com/php-language/15348-zend-engine-array-implementation.html
If you want to be sure, read the source, then compile it, but make sure you can trust your compiler (Warning: PDF, and unrelated, but very cool).
© 2022 - 2024 — McMap. All rights reserved.