On Thu, 2011-04-28 at 19:19 -0400, Robert Cummings wrote:
> On 11-04-28 06:37 PM, dholmes1...@gmail.com wrote:
> > Thanks switch and case seems to be more faster for the job and a lot cleaner
> > ------Original Message------
> > From: Andre Polykanine
> > To: dholmes1...@gmail.com
> > Cc: php-general@lists.php.net
> > Subject: Re: [PHP] What's faster using if else or arrays?
> > Sent: Apr 28, 2011 6:17 PM
> >
> > Hello Dholmes1031,
> >
> > I would write it like this:
> > switch($foo) {
> >             case 5: $dothis; break;
> > case 3: $dothat; break;
> > default: $donothing; break;
> > }
> 
> This sounds like a job for *dun dun dun* GOTO!
> 
> Kidding, of course ;)
> 
> Cheers,
> Rob.
> -- 

you should be removed and banned from this list for even just THINKING
about using a GOTO!  :P

(yes, there are still *SOME* (and i use that loosely) benefits to the
GOTO command, but in reality, no.)

Steve


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to