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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…