I'm editing some coding that someone did for me a long time ago and i've come across a different way of doing a while loop than what i'm used to
while (false!==($row = mysql_fetch_array($result))) {
Is that just the same as
while($row = mysql_fetch_array($result)) {
If they aren't the same, whats the difference? If they are the same which one is better to use?