我有一个布尔变量,我想将其转换为字符串:
$res = true;
我需要转换后的值的格式为:"true" "false",而不是"0" "1"
"true" "false"
"0" "1"
$converted_res = "true"; $converted_res = "false";
我试过了:
$converted_res = string($res); $converted_res = String($res);
但是它告诉我,string并且String不是公认的功能。 如何将此布尔值转换为PHP "true"或"false"PHP 格式的字符串?
string
String
"true"
"false"
最简单的解决方案:
$converted_res = $res ? 'true' : 'false';