php
php copied to clipboard
Parser issue with nested if/else blocks.
test file:
<?php
if (true)
if (true)
echo 1;
else
echo 2;
if (true) echo 1;
?>
got:
Found echo:"echo", expected [;]