goto

http://php.net/goto

Restricted goto that doesn't let you jump into structures, only out of them.

<?php
function foo() {
   for($i=0, $j=1; $i<10; $i++) {
       while($j++) {
           if($j == 5) {
               goto end;
           }
       }
   }
end:
   // run cleanup code
}
?>