News Feed
Jobs Feed
Sections




News Archive
Davey Shafik's Blog:
Faster Arrays
November 07, 2011 @ 08:54:58

In this new post to his blog Davey Shafik looks at an alternative to the traditional arrays most scripts use - something a little faster and more specific: SplFixedArray, part of the Standard PHP Library included with every release.

The SplFixedArray class provides a super-fast, fixed size array implementation. There are some limitations however, first you must use numeric keys and secondly you cannot use anonymous assignment (i.e. $array[] = 'value';). You'll notice one requirement was missing, that it should have a fixed size. While having a fixed size is what will bring you the speed increase it's actually not a requirement that the size be fixed.

Because of these restrictions, the SplFixedArray is faster than its cousin - between 20 and 40 percent faster, depending on the size of the array. He includes a few snippets in the the post - one showing how he benchmarked the differences against simple arrays and another showing a more advanced example with another SPL type, a FilterIterator.

0 comments voice your opinion now!
spl splfixedarray array benchmark filteriterator


blog comments powered by Disqus

Similar Posts

Brian Moon's Blog: PDO Turbo Button

Adam Gotterer's Blog: Building an Object Collection Manager with the Standard PHP Library (SPL)

Richard Thomas' Blog: Performance of Zend_Loader

Ilia Kantor's Blog: Pluggable/Tunable Template Benchmark

Maarten Balliauw's Blog: Generic arrays in PHP


Community Events









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


development zendframework2 functional podcast framework object event community api conference tool testing language code release example introduction opinion interview composer

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