<?php
if(true) :
	echo "teste\n";
	echo "teste2\n";
endif;

$array = array('teste', 'teste2');
foreach($array as $item) :
	echo $item."\n";
endforeach;

for($i = 0; $i < 5; $i++) :
	echo $i."\n";
endfor;

while(true) :
	echo 'while..';
	break;
endwhile;
?>