PHP's strpos() not working and always getting into the if condition
问题 I'm trying to check if a specific character is not present in a string in my code and apparently php doesn't care about anything and always gets inside the if foreach($inserted as $letter) { if(strpos($word, $letter) !== true) //if $letter not in $word { echo "$word , $letter, "; $lives--; } } In this case $word is "abc" and $letter is "b", I've tried changing a lot of random things like from true to false and things like that but I can't get it, can anyone help me please? 回答1: Changing the