In python we have:
for i in range(length)
What about in PHP?
Straight from the docs:
foreach (range(0, 12) as $number) { echo $number; }