This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Furqan Arshad
almost 11 years

Please help me clear this switch statement concept!!

Answer 518387a7c3448cf0d20029d1

2 votes

Permalink

The “case” is the IF. case 0: echo "Apple"; break; is the same as: if ($fruit == 0) { echo "Apple!"); }. If you want to check for fruits, you would do it like this:

$fruit = "Apple";

switch ($fruit) {
    case "Apple":
        echo "The fruit is an apple";
        break;
    case "Banana": 
        echo "Bananas are yummy";
        break;
    default: 
        echo 'The fruit isnt a banan or an apple';
}
points
Submitted by Roni
almost 11 years

1 comments

Furqan Arshad almost 11 years

Thanks a billion dear ! :) I understood the concept now. Thank you very very much. I was waiting for someone to answer and finally its you.