I'm pretty sure this is a simple fundamental flaw in my newb PHP knowledge, but I was surprised when the following happened:

enter image description here

$result (what's being returned by my method) passes the IF statement. Weird. I'm guessing this is because, technically, it's a bool and it isn't false? So when it's compared against a string (e.g. "email") it returns true.

Should I change my method to return as the result as a string containing "true" (instead of return true; on success), or is there another way I should be doing this?

Thanks.

link|improve this question

1  
Please just paste your code instead of a screenshot. – TJHeuvel May 9 '11 at 14:24
1  
@TJ, The reason I posted a screenshot is because it shows the contents of $result, and also that it passed the conditional test. Plus it's literally three lines of code. – Django Reinhardt May 9 '11 at 14:26
feedback

3 Answers

up vote 10 down vote accepted

Yes, true is equal (==) to a non-empty string. Not identical (===) though.

I suggest you peruse the type comparison table.

link|improve this answer
Excellent. Thanks a lot. – Django Reinhardt May 9 '11 at 14:29
+1 for mentioning identity – Jürgen Thelen May 9 '11 at 14:30
feedback

It returns true because php will try to convert something to be able to compare them. In this case it probably tries to convert the string on the right side to a bool which will be true in this case. And true == true is ofcourse true.

By doing $result === "email" (triple =) you tell PHP that it shoudn't do conversions and should return false if the types don't match.

link|improve this answer
feedback

if($result === "email") will do the trick but personally I would never go this way.

link|improve this answer
What way would you suggest? – Django Reinhardt May 9 '11 at 14:28
Why would you never go that way? – meze May 9 '11 at 14:29
personally I would go with 2 variables. one for a valid result, another for a previously defined error. Improves code readability, but I think it's purely a personal coding style. Should have left this annotation. – DanielB May 9 '11 at 14:35
php.net/manual/en/function.strcmp.php Use a string compare function rather than == – Chris May 9 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.