In what scenarios would it be more appropriate to use if-else statements instead of switch case statements in PHP?

If you have a simple conditional statement with only a few possible outcomes, it may be more appropriate to use if-else statements instead of switch case statements in PHP. Switch case statements are better suited for situations where you have a larger number of possible outcomes and want to avoid writing multiple if-else statements.

$day = "Monday";

if($day == "Monday") {
    echo "It's the start of the week!";
} elseif($day == "Friday") {
    echo "It's finally Friday!";
} else {
    echo "It's just another day.";
}