I think what he is trying to ask is this...
Is PHP nice enough to allow nested 'if's (not nested if-else's)
if (condition && if (new_condition)) {
new_list;
...
} // end of new_condition list
{ list;
...
} // end of condition list
and if I am correct, then I believe the answer to the question is no...no scripting language or otherwise allows this kind of behavior AFAIK.
The closest you can come to this is:
if (condition) {
if {new_condition) {
new_list;
...
} // end of new_condition
list;
...
} else {
list_otherwise;
...
} // end of condition & condition_otherwise