The following code doesn\'t print out anything:
$bool_val = (bool)false; echo $bool_val;
But the following code prints 1:
1
echo(var_export($var));
When $var is boolean variable, true or false will be printed out.
$var
true
false