<?phpconst $k = 10;switch($k){case 10: print "First"; break;case 11: print "Second"; break;default: print "Third";}?>
Constants cannot be used in switch cases.
Previous Question Next Question
Your comments will be displayed only after manual approval.