I've noticed code written in this order ->
if (FALSE === $foo)
{
// yada yada
}Is there a reason/benefit to test variables like that instead of ->
if ($foo === FALSE)
{
// yada yada
}Thanks
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

