rarebit Posted November 19, 2007 Share Posted November 19, 2007 What are the speed implications of using an associative array compared to general numerical array? I've been writing a form class,inside is an associative array based on each elements' name, then each of those has a general numeric array for the details, e.g. type, name, value, size, alt, etc. With all the numerous types of form elements this can start to become confusing because each type has a different argument list. This helper will be put into an already burgeoning cms system, not only will the size of the source of the helper increase, but also the memory footprint when in use and probably longer comparison routines. I probably have already talked myself out of 'form before function' and will go for the correct 'form follows function', but... (sometimes it just helps to get it off y'r chest!) Link to comment https://forums.phpfreaks.com/topic/77925-speed-implications/ Share on other sites More sharing options...
ToonMariner Posted November 19, 2007 Share Posted November 19, 2007 I doubt you will notice any decrease in speed if you use text indices in your arrays (it will help you no end though!) Link to comment https://forums.phpfreaks.com/topic/77925-speed-implications/#findComment-394482 Share on other sites More sharing options...
rarebit Posted November 19, 2007 Author Share Posted November 19, 2007 Well i've got the general one up to virtual completion, so when time i'll update to associative and run some tests. How do I dump all the php memory table? Link to comment https://forums.phpfreaks.com/topic/77925-speed-implications/#findComment-394546 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.