Is break; required after die() php
I've been thinking to much...
In the area of switch case is break; required after die()
Example:
switch($i){
case 0:
die('Case without break;');
case 1:
die('Case with break;');
break;
}
No comments:
Post a Comment