At 3:32 PM -0500 1/12/09, Robert Cummings wrote:
One has to wonder about the readability of the case version though since
one may not notice immediately the missing break statement.

Cheers,
Rob.

Yes, but that's because of the way you wrote it -- consider this:

<?php
switch( $foo )
   {
   case 0:
   // something
   break;

   case 2:
   case 3:
   // something else
   // something elser
   break;

   default:
   // something defaulty
   }
?>

If you group the case's together, then there's no problem understanding what happens in case 2 or 3.

Cheers,

tedd
--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

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

Reply via email to