Simple types / Boolean
Conversion from a string
Converting to a string
Getting values
Logical operations
<?php
$sunIsStar =
true
;
$str = $sunIsStar ?
"True"
:
"False"
;
//str is "True"
echo $str;