Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why is a strpos that is !== false not true?

Consider the following example:

$a='This is a test';

If I now do:

if(strpos($a,'is a') !== false) {
    echo 'True';
}

It get:

True

However, if I use

if(strpos($a,'is a') === true) {
    echo 'True';
}

I get nothing. Why is !==false not ===true in this context I checked the PHP docs on strpos() but did not find any explanation on this.

like image 436
Pete Avatar asked Mar 05 '23 08:03

Pete


1 Answers

Because strpos() never returns true:

Returns the position of where the needle exists relative to the beginning of the haystack string (independent of offset). Also note that string positions start at 0, and not 1.

Returns FALSE if the needle was not found.

It only returns a boolean if the needle is not found. Otherwise it will return an integer, including -1 and 0, with the position of the occurrence of the needle.

If you had done:

if(strpos($a,'is a') == true) {
    echo 'True';
}

You would have usually gotten expected results as any positive integer is considered a truthy value and because type juggling when you use the == operator that result would be true. But if the string was at the start of the string it would equate to false due to zero being return which is a falsey value.

like image 66
John Conde Avatar answered Mar 12 '23 11:03

John Conde