Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Usually comparing with false is done like this where false is on right side:

if(strpos($str, 'php') !== false) {
    // code
}

But I have also noticed at various places false on left side:

if(false !== strpos($str, 'php')) {
    // code
}

As far as I understand, they are same then why some people put false on left side? Is there anything special about it, something I am missing ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
700 views
Welcome To Ask or Share your Answers For Others

1 Answer

Thats something inattentive developers invented

The "problem"

if ($var = false) { /* code */ }

The solution

if (false = $var) { /* code */ }

Latter one will fail and thus the developer sees, that he misses an additional =, !, ... here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...