Could I really do that?
example:
switch($string){
case function_name(preferably built-in functions):
//codes to run...
break;
....
....
}
|
Could I really do that? example:
|
|||||||
|
|
Yes it is possible. You can call either built-in function or user-defined function as case expressions. As an example:
outputs
You can take a look at the Grammar of PHP here and the switch construct is defined as:
Clearly the |
|||