What I see is that you are mixing up the two possible form of building an 'if' construct in php.
The first form is either:
if ( condition ) instruction;
if ( condition ) { more; than; one; instructions; }
The second one is:
if ( condition ): instruction; another; endif;
When you write
<?php if (condition) ?>
...without a '{' or a ':' before the closing '?>' tag, in fact you're truncating the if command omitting the instructions, and PHP accept this. When you'll open the php tag again, you're already outside the if.
The same does NOT apply if you just "forget" the instruction whitin a single block, where an 'endif;' is not allowed as an instruction;
So:
<?php if (condition) ?>
anything outside the if
<?php instruction_outside_the_if; ?>
... is meaningless (because you elaborate an if but do nothing after it) but is not a strict error.
<?php if (condition 1): ?> <!-- note the ':' in this if -->
<?php if (condition 2) ?>
anything outside the second if but inside the first
<?php endif; ?> <!-- this closes the first if
...here you have a first if that works, but the second is still empty.
<?php if (condition 1): ?> <!-- note the ':' in this if -->
<?php if (condition 2) ?>
anything outside the second if but inside the first
<?php else: ?>
still outside the second if but inside the first, in the ELSE part
<?php endif; ?> <!-- this closes the first if
...this is more or less like your example, where the else (or elseif) belongs to the first if.
<?php if (true) ?>
<?php elseif(foo){ }; ?>
That's another exception, as you're not putting anything between a closing tag and opening tag, so the parser "optimizes" them out (is not exactly like that, but it's a correct approximation). Try putting anything between the two php tags, like:
<?php if (true) ?>
anything
<?php elseif(foo){ }; ?>
... and see the "syntax error, unexpected T_ELSEIF" appear.
Parse error: syntax error, unexpected T_ELSEIF... Let me test your new example. Also, can you make it real code please, not pseudocode? – Kerrek SB Jul 6 '11 at 22:01if(true)is treated likeif(true){}when terminated by the tag. So this works, too:<?php if(true): if(true){} endif; echo 'here'; ?>. You seem to get an empty statement for free by closing off the PHP tag. – Kerrek SB Jul 6 '11 at 22:10