I mostly use the switch case for string values. Can someone confirm if they can be used for equality of complex objects and if the objects are different too. As you can see I'm not always checking if $obj1 == some other objects. Both objects can change. Can someone tell me what would be the right syntax for this if it's allowed? I'm not sure what I would put as the switch() input itself.
if ($obj1 == $obj9)
elseif ($obj5 == $obj9)
elseif ($obj5 == $obj1)
else
new code, would this be correct?
switch (true){
case $obj1 == $obj9:
//do something
break;
case $obj5 == $obj9:
//do something
break;
case $obj5 == $obj1:
//do something
break;
case default:
//do something
break;
}
switch(true)(which isn't what the construct was intended for). Your if-elseif-else seems to be the right way to go. – BoltClock♦ Jan 8 '11 at 5:12default:notcase default:) nevertheless. I was just going on about how if-else would make more sense than a switch. See Kel's answer for why. – BoltClock♦ Jan 8 '11 at 5:31