1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
--TEST-- Incorrect constant propagation on BOOL in pass 1 --FILE-- <?php function test($foo) { $bar = 0; if ($bar === 1 && $foo && PHP_SAPI !== 'cgi') { echo "bar\n"; } echo "foo\n"; } test(1); ?> --EXPECT-- foo