Does anyone use it, is it more efficient on the compiler and coding to do this

switch($i):
        case 0:
        
        break;
endswitch;

instead of this ?

switch($i) {
        case 0:
        
        break;
}

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



Reply via email to