如何将布尔值转换为字符串
我有一个布尔变量,我想将其转换为字符串:
$res = true;
我需要转换后的值的格式为:"true" "false"
,而不是"0" "1"
$converted_res = "true";$converted_res = "false";
我试过了:
$converted_res = string($res);$converted_res = String($res);
但是它告诉我,string
并且String
不是公认的功能。
如何将此布尔值转换为PHP "true"
或"false"
PHP 格式的字符串?
回答:
最简单的解决方案:
$converted_res = $res ? 'true' : 'false';
以上是 如何将布尔值转换为字符串 的全部内容, 来源链接: utcz.com/qa/435474.html