php-src/tests/lang/021.phpt
Stig Bakken 315f4f5658 @PHP 3 regression testing framework re-born (Stig)
Took the old PHP 3 regression testing framework and rewrote it in PHP.
Should work on both Windows and UNIX, however I have not tested it on
Windows.  See tests/README for how to write tests.  Added the PHP 3
tests and converted most of them.
2000-08-27 19:46:06 +00:00

46 lines
539 B
PHP

--TEST--
Switch test 2
--POST--
--GET--
--FILE--
<?php
for ($i=0; $i<=5; $i++)
{
echo "i=$i\n";
switch($i) {
case 0:
echo "In branch 0\n";
break;
case 1:
echo "In branch 1\n";
break;
case 2:
echo "In branch 2\n";
break;
case 3:
echo "In branch 3\n";
break 2;
case 4:
echo "In branch 4\n";
break;
default:
echo "In default\n";
break;
}
}
echo "hi\n";
?>
--EXPECT--
i=0
In branch 0
i=1
In branch 1
i=2
In branch 2
i=3
In branch 3
hi