Using if and elseif, it is possible to easily perform the comparison below, but for learning purposes I am analyzing if it is possible to have the same functionality using switch.
If $x receives a positive or negative value, I get the right output, but if $x receives 0 (zero), I get the output 'Lower', but the right output should be 'Equal'.
Here is the code:
$x = 0;
switch($x)
{
case ($x < 0):
echo 'Lower';
break;
case ($x == 0):
echo 'Equal';
break;
case ($x > 0):
echo 'Bigger';
break;
default:
echo 'Not found';
}
Is it possible to use a switch statement with expressions as cases?
break;– Marcio Simao Jul 9 '12 at 0:56ifandelse ifin this case? It's more readable, and require fewer lines of code. – bfavaretto Jul 9 '12 at 0:57ifandelseifwould be much more indicated. My main question is to know if is possible to use sentences in eachcaseof theswitch– Marcio Simao Jul 9 '12 at 1:00