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

I have a boolean variable which I want to convert to a string

$res = true;

I need it the converted value to also be in the format "true" "false" not "0" "1"

$converted_res = "true";
$converted_res = "false";

I've tried:

$converted_res = string($res);
$converted_res = String($res);

but it tells me string and String are not recognized functions. How do I convert this boolean to a string in the format "true" or "false" in php?

share|improve this question

5 Answers

up vote 40 down vote accepted
$converted_res = ($res) ? 'true' : 'false';
share|improve this answer
This is the easyest way to do it, but it depends on what you need it for it might not be the best sulution. – DoomStone May 8 '10 at 18:43

See var_export

share|improve this answer
Ooh, I had forgotten about this one - nice. :) – ABach May 8 '10 at 18:43

You use strval() or (string) to convert to string in PHP. However, that does not convert boolean into the actual spelling of "true" or "false" so you must do that by yourself. Here's an example function:

function strbool($value)
{
    return $value ? 'true' : 'false';
}
echo strbool(false); // "false"
echo strbool(true); // "true"
share|improve this answer
-1 Neither of those are the correct answer to his question. – hobodave May 8 '10 at 18:31
If $val = true; then strval($val) and (string) $val both return 1. – ABach May 8 '10 at 18:34
1  
Hang on - did you remove your incorrect answer and then copy what @hobodave wrote? – ABach May 8 '10 at 18:42
@tab used String() and string() for casting so I corrected him with the actual casting in PHP. Then I edited and offered a custom solution as well. Didn't even see what @hobodave wrote. Why the urge to scandalize? I was just trying to help :). Also, I didn't REMOVE anything. – treznik May 8 '10 at 18:50
2  
+1 Because I get what you were saying and nobody else bothered to explain to tag why his attempts at casting were throwing errors. I mean really, downvote for a partial answer and then downvote more when it's explained further? A ternary assignment statement isn't exactly super advanced stuff, calling plagiarism on that is like complaining that someone used your brilliant idea of using a foreach loop to iterate through an array. – Syntax Error May 8 '10 at 19:18
show 3 more comments

The function var_export returns a string representation of a variable, so you could do this:

var_export($res, true);

The second argument tells the function to return the string instead of echoing it.

share|improve this answer

Why just don't do like this?:

if ($res) {
    $converted_res = "true";
}
else {
    $converted_res = "false";
}
share|improve this answer
1  
Have you ever tried to indent your source code using 4 spaces? – Andreas Rejbrand May 8 '10 at 22:29

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.