Re: [PHP] Will return break loop?

2002-09-11 Thread Kevin Stone
ay, September 11, 2002 3:42 PM Subject: RE: [PHP] Will return break loop? > really quik answer... > > yes. > > really long answer... > from php manual: > > "the return() statement immediately ends execution of the current function, > and returns its argument as the v

Re: [PHP] Will return break loop?

2002-09-11 Thread Zak Greant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On September 11, 2002 15:57, Kevin Stone wrote: > Really quick question. Will "return" break a loop inside a function? > > Example.. > myfunc() > { > while($val=0) > { > if ($i=128) > { > return true; //<-break or

RE: [PHP] Will return break loop?

2002-09-11 Thread David Buerer
really quik answer... yes. really long answer... from php manual: "the return() statement immediately ends execution of the current function, and returns its argument as the value of the function call." -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: Wednesday, S

RE: [PHP] Will return break loop?

2002-09-11 Thread SHEETS,JASON (Non-HP-Boise,ex1)
I tested this on PHP 4.2.3 and in my case return does break a while loop. Jason -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 3:57 PM To: [EMAIL PROTECTED] Subject: [PHP] Will return break loop? Really quick question. Will "return"