|
Posted by thib΄ on 01/08/08 02:12
adam.timberlake@gmail.com wrote:
> I was reading this article yesterday:
> http://www.talkphp.com/advanced-php-programming/1886-how-would-i-apply-htmlentities-every-array-item.html
>
> I am wondering.. okay.. we can use array_walk but doesn't that just
> loop through the items anyway ?? So why not just use the foreach loop
> instead... is it a shorthand trick or is there any deeper reasoning
> behind it... Thats my question!
>
> I do have another question and that is if it is a shorthand version,
> having a foreach loop isn't much more in terms of the letters you type
> and so why have the PHP developers put it in there ??
>
> It's puzzling me. Thank you in advance.
Well, array_walk() lets you use a callback function to treat your data,
which is a totally different approach to the structure of your script;
whereas yes, it's always possible (I guess) to do things with 'classic'
loops.
I don't pretend, it remains a good question; but IMO there isn't any
deeper reasoning behind it.
Anyway, concerning your doubts about what to use and when, I recently
found some really good reading here:
http://www.blueshoes.org/phpBench.php
I don't know if it answers your question correctly, but you should take
a look, it's worth it ;).
-thibΒ΄
Navigation:
[Reply to this message]
|