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
$a="test"; if("test"!=$a) { echo "yes"; } else { echo "finish"; }