1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
--TEST-- Switch where all targets, including default, coincide --SKIPIF-- <?php require_once('skipif.inc'); ?> --FILE-- <?php $foo = 42.0; $bar = true; switch ($foo) { default: case 0: case 1: case 2: case 3: if ($bar) { echo "true\n"; } else { echo "false\n"; } } ?> --EXPECT-- true