19-04-2009

PHP Alternative syntax php foreach

Alternative syntax for foreach loops in PHP:

foreach($array as $element):
  #do something
endforeach;

This is an alternative syntax - which can be handy for use in templates. The ususal syntax is described here:

http://php.net/foreach

Comments:

Your comment:

»

 

[x]