As a php neewbie , I try to read a lot of other people´s code in order to learn. Today I came across a line like this :
if ( stripos($post_to_check->post_cont
The difference between !==false and ==true is the difference between an identical/not-identical and equal/non-equal comparison in PHP.
!==false
==true
Please see the Comparison Operators in the PHP Manual what the difference between Identical and Equal is.