While using a switch case loop, can i use the for loop for iterating the cases?
- by Parth
In PHP, While using a switch case loop, can i use the for loop for iterating the cases?
for example
switch .....
foreach($xyz as $abc)
{
CASE:$abc
}
default;
Is this possible?