I have a function where I have:

<?php
while (something())
{
  if ($option1)
  { do_1(); }
  elseif ($option2)
  { do_2(); }
  // ... continue for 10 or more options...
}
?>

would it be quicker to do the above code or:

if ($option1)
{
  while(something())
  { do_1(); }
}
elseif ($option2)
{
  while (something())
  { do_2(); }
}
  // ... continue for 10 or more options...

Thanks,

Dan

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

Reply via email to