If-Else Construct and Boolean Values
Let we have some boolean variable,
which can take values true
or false:
<?php
$test = true;
?>
Let's write an if that checks our
variable for the value true:
<?php
$test = true;
if ($test === true) {
echo '+++';
} else {
echo '---';
}
?>
Check that the variable $test
is equal to true.
Check that the variable $test
is equal to false.