PrimitiveType

PHP: for loop

<?php for ($i = 1; $i <= 5; $i++) { echo $i . PHP_EOL; } /* prints: 1 2 3 4 5 */