what does the keyword default
in php do? there's no documentation on http://php.net/default, but i get an error when using it as a function name: »unexpected T_DEFAULT, expecting T_STRING«
what does it do/where can i find information about it?
default
is part of the switch
statement:
switch ($cond) {
case 1:
echo '$cond==1';
break;
case 2:
echo '$cond==2';
break;
default:
echo '$cond=="whatever"';
}
The default
keyword is used in the switch
construct:
$value = 'A';
switch ($value) {
case 'A':
case 'B':
echo '$value is either A or B.';
break;
case 'C':
echo '$value is C.';
break;
default:
echo '$value is neither A, nor B, nor C.';
}
The default case matches anything that wasn’t matched by the other cases.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With