Reproducible crash Bug Reported by iwannalive@... Tue, 23 Jun 2009 23:46:57 +0000 PHP: 5.3.0RC4, OS: All Description: ------------ PHP 5.3 includes goto. This is a problem. Seriously, PHP has made it this far without goto, why turn the language into a public menace? Reproduce code: --------------- <?php goto a; echo 'Foo'; a: echo 'Bar'; ?> Expected result: ---------------- The world will end. Act