Jump to content

Which is better - for or foreach ?


mac_gabe

Recommended Posts

Noob question. I've learned so much in the last couple of weeks that I've actually found two ways of doing the same thing!  :D I was wondering which was the better method, if there is any difference. They are being used to print somewhere between 10 and 200 lines of text.

 

Either:

$categories_count= (count($categories[1])) -1;
for ($u=0; $u < $categories_count; $u++) {echo "<li>".$categories[1][$u]."</li>";}

Or:

foreach ($categories[1] as $line => $cat)  {echo "<li>".$cat."</li>";};

 

Link to comment
https://forums.phpfreaks.com/topic/219402-which-is-better-for-or-foreach/
Share on other sites

  • 6 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.