What is a switch statement in PHP?
A control structure used to run different code based on a value.
Is switch faster than if-else?
Difference is minimal; readability matters more.
Can switch handle ranges?
No, it checks only fixed values.
Is default case mandatory?
No, but strongly recommended.
Can I use strings in switch cases?
Yes, PHP supports strings in switch cases.