Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert string to boolean?

$string = 'false';

$test_mode_mail = settype($string,'boolean');

var_dump($test_mode_mail);

if($test_mode_mail) echo 'test mode is on.';

it returns,

boolean true

but it should be boolean false.

share|improve this question

4 Answers

up vote 34 down vote accepted

Strings always evaluate to boolean true unless they have a value that's considered "empty" by PHP (see the documentation for empty for more details). If you need to set a boolean based on the text value of a string, then you'll need to check for the presence or otherwise of that value.

$test_mode_mail = $string === 'true'? true: false;

EDIT: The above code is intended for clarity of understanding. In actual use the following code may be more appropriate:

$test_mode_mail = ($string === 'true');
share|improve this answer
2  
I recommend to always use strict comparison, if you're not sure what you're doing: $string === 'true' – Znarkus Sep 7 '11 at 16:00
11  
I found this - filter_var($string, FILTER_VALIDATE_BOOLEAN); is it a good thing? – lauthiamkok Sep 7 '11 at 16:05
2  
The ternary doesn't seem necessary. Why not just set $test_mode_mail to the value of the inequality? $test_mode_mail = $string === 'true' – Tim Banks Jun 5 '12 at 15:28
@TimBanks True enough, but I think it makes it clearer. – GordonM Jun 5 '12 at 16:55
1  
But what about 1/0, TRUE/FALSE? I think @lauthiamkok 's answer is the best. – nord_ua Dec 15 '12 at 14:06

This method was posted by @lauthiamkok in the comments. I'm posting it here as an answer to call more attention to it.

Depending on your needs, you should consider using filter_var() with the FILTER_VALIDATE_BOOLEAN flag.

filter_var('true', FILTER_VALIDATE_BOOLEAN); // true
filter_var(1, FILTER_VALIDATE_BOOLEAN); // true
filter_var('1', FILTER_VALIDATE_BOOLEAN); // true
filter_var('on', FILTER_VALIDATE_BOOLEAN); // true
filter_var('yes', FILTER_VALIDATE_BOOLEAN); // true

filter_var('false', FILTER_VALIDATE_BOOLEAN); // false
filter_var(0, FILTER_VALIDATE_BOOLEAN); // false
filter_var('0', FILTER_VALIDATE_BOOLEAN); // false
filter_var('off', FILTER_VALIDATE_BOOLEAN); // false
filter_var('no', FILTER_VALIDATE_BOOLEAN); // false
filter_var('asdfasdf', FILTER_VALIDATE_BOOLEAN); // false
filter_var('', FILTER_VALIDATE_BOOLEAN); // false
filter_var(null, FILTER_VALIDATE_BOOLEAN); // false
share|improve this answer
+1 this was the only method which provided the most accurate results – John Magnolia Jun 5 at 10:07

The String "false" is actually considered a "TRUE" value by PHP. The documentation says:

To explicitly convert a value to boolean, use the (bool) or (boolean) casts. However, in most cases the cast is unnecessary, since a value will be automatically converted if an operator, function or control structure requires a boolean argument.

See also Type Juggling.

When converting to boolean, the following values are considered FALSE:

  • the boolean FALSE itself

  • the integer 0 (zero)

  • the float 0.0 (zero)

  • the empty string, and the string "0"

  • an array with zero elements

  • an object with zero member variables (PHP 4 only)

  • the special type NULL (including unset variables)

  • SimpleXML objects created from empty tags

Every other value is considered TRUE (including any resource).

so if you do:

$bool = (boolean)"False";

or

$bool = settype('false','boolean');

in both cases $bool will be TRUE. So have have to do t manually, like GordonM suggests.

share|improve this answer

You should be able to cast to a boolean using (bool) but I'm not sure without checking whether this works on the strings "true" and "false".

This might be worth a pop though

$myBool = (bool)"False"; 

if ($myBool) {
    //do something
}

It is worth knowing that the following will evaluate to the boolean False when put inside

if()
  • the boolean FALSE itself
  • the integer 0 (zero)
  • the float 0.0 (zero)
  • the empty string, and the string "0"
  • an array with zero elements
  • an object with zero member variables (PHP 4 only)
  • the special type NULL (including unset variables)
  • SimpleXML objects created from empty tags

Everytyhing else will evaluate to true.

As descried here: http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting

share|improve this answer
3  
In response to the guess in your first paragraph: using an explicit cast to boolean will convert "false" to true. – Mark Amery Mar 13 at 10:29
2  
This will print "true" $myBool = (bool)"False"; if ($myBool) { echo "true"; } – SSH This Apr 22 at 18:28
This is wrong, strings are evaluated as true unless they contain "" or "0". – Michael Calkins May 25 at 17:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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