php-src/tests/lang/033.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

46 lines
498 B
PHP

--TEST--
Alternative syntaxes test
--FILE--
<?php
$a = 1;
echo "If: ";
if ($a) echo 1; else echo 0;
if ($a):
echo 1;
else:
echo 0;
endif;
echo "\nWhile: ";
while ($a<5) echo $a++;
while ($a<9):
echo ++$a;
endwhile;
echo "\nFor: ";
for($a=0;$a<5;$a++) echo $a;
for($a=0;$a<5;$a++):
echo $a;
endfor;
echo "\nSwitch: ";
switch ($a):
case 0;
echo 0;
break;
case 5:
echo 1;
break;
default;
echo 0;
break;
endswitch;
?>
--EXPECT--
If: 11
While: 12346789
For: 0123401234
Switch: 1