I'm using strpos()
to find the position of a string in another string. I first check if the string is found at all in there. Here's my line:
if (
strpos($grafik['data'], $ss1) <> false
&& strpos($grafik['data'], $ss2) <> false
&& strpos($grafik['data'], $ss1) < strpos($grafik['data'],$ss2)
)
I check if both strings are contained and then I want the first one to be placed before the second one. In the PHP manual it says that strpos()
returns false when string is not found. However if my string starts at the zero position (strpos()
returns 0 since its the beginning), it seems like this statement
strpos($grafik['data'], $ss1) <> false
is false. Somehow 0
is equal to false
! How do I make the statement true
when strpos()
returns 0
?