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.
|
|
|
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.
EDIT: The above code is intended for clarity of understanding. In actual use the following code may be more appropriate:
|
|||||||||||||||||||
|
|
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
|
|||
|
|
|
The String "
so if you do:
or
in both cases |
||||
|
|
|
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
It is worth knowing that the following will evaluate to the boolean False when put inside
Everytyhing else will evaluate to true. As descried here: http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting |
|||||||||||
|