I have a Boolean variable which I want to convert to a string:
$res = true;
I need the converted value to be of the format: \"true\"
\"true\"
Just wanted to update, in PHP >= 5.50 you can do boolval() to do the same thing
boolval()
Reference Here.