[PHP] Re: what is better for performance?

2005-12-11 Thread Martin Nicholls
The question is null and void, the real question is which do you need to use, just because objects in php behave like arrays, that does not mean the are interchangeable in all cases. You don't create an object just for the sheer hell of it. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: what is better for performance?

2005-12-06 Thread Oliver Grätz
Karel Kozlik schrieb: Hi, I am just thinking about that what is better for storeing structured variables in point of view of performance. Is better store structured variables in associative array, for example: $person['first_name'] = 'Karel'; $person['last_name'] = 'Kozlik';