Thread: goto
View Single Post
  #13  
Old 02-02-2008, 08:49 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Skyld View Post
It's called "return", and will end function execution there and then, regardless of how many loops you have.
Example:

PHP Code:
function onCreated() {
  
foo bar;
  var = 
2;
  
doLoop();
  
doOtherThings();
}

function 
doLoop() {
  for (
010i++) {
    for (
010j++) {
      if (
this.stuff[i][j])
        
doLoopThings();
        return;
      }
    }
  }

__________________
Do it with a DON!
Reply With Quote