Is there any command in PHP to stop executing the current or parent if statement, same as break or break(1) for switch/
if
break
break(1)
switch
goto
if(smth) { ..... ..... ..... ..... ..... goto Area1; ..... ..... } Area1: ....your code here....
However, remember goto is not a recommended practice, because it makes the code to be formatted unusually.