简单类型 / 布尔
从字符串转换
转换为字符串
获取值
逻辑运算
<?php
$sunIsStar =
true
;
$str = $sunIsStar ?
"True"
:
"False"
;
//str is "True"
echo $str;