Bix wrote:
I have a for loop within a for loop, and need to break out of both together...
for ( blah ) { for ( blah ) { if ( true ) { break; } // only breaks out of this loop, how can I break it out of both loops. } }
"break accepts an optional numeric argument which tells it how many nested enclosing structures are to be broken out of."
from http://www.php.net/manual/en/control-structures.break.php
Erik
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php