Skip to content
Permalink
a7d5681bd4
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 21 lines (14 sloc) 271 Bytes
<?php
if ($something) echo 'hello';
if ($something) {
echo 'hello';
} else echo 'hi';
if ($something) {
echo 'hello';
} else if ($else) echo 'hi';
for ($i; $i > 0; $i--) echo 'hello';
while ($something) echo 'hello';
do {
$i--;
} while ($something);
?>