Jochem Maas wrote:
> switch (true) {
>       case ($x === $y):
>               // something
>               break;
>
>       case ($a != $b):
>               // something
>               break;
>
>       case (myFunc()):
>               // something
>               break;
>
>       case ($my->getChild()->hasEatenBeans()):
>               // something
>               break;
> }
>
> evil ... but it works.
>
>
>   
>   
This is a misuse of the switch statement.  Switch is meant to compare
values to a single variable as stated on the manual page:
http://us2.php.net/switch

Thank you,
Micah Gersten
onShore Networks
Internal Developer
http://www.onshore.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to