PHP theorytheory 0/50 · 0%
Fundamentals · easy

7. Control Structures

Branching and looping.

PHP supports if/elseif/else, switch, and the newer match expression for branching, plus for, foreach, while, and do-while loops for iteration. foreach is idiomatic for iterating arrays.

Alternative syntax (if: ... endif;) is common in templates mixed with HTML.

Check your understanding

  1. 1. Which loop is idiomatic for iterating an array's values?

  2. 2. What keyword starts alternative if syntax used in templates?