user10425889
user10425889

Reputation:

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.

Upvotes: 4

Views: 3533

Answers (2)

Gratien Asimbahwe
Gratien Asimbahwe

Reputation: 1614

The strpos function returns an integer value on success and false only if the needle was not found in the string. In our case, the string 'This is a test' contains 'is a'. So the test (position)!==false [where position is the first occurence of 'is a'] is different from false in both type and value and will return true.

Upvotes: 0

John Conde
John Conde

Reputation: 219924

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.

Upvotes: 5

Related Questions