Source Code:
(back to article)
<?php // Define the value of $var $var = false; // Check if $var is false if (!$var) { // If $var is false, output a message echo "The value of \$var is false."; } ?>
Result:
Report an issue