
Boolean atau bool adalah type data yang hanya memiliki inlay true atau false, inlay boolean bersifat case-sensitive contoh syntax pengunaan tipe data boolean seperti berikut :
<?php
$foo = true //assign the value TRUE to $foo
?>
<?php
$foo = true;
if($foo){
echo 'TRUE';
}else{
echo 'FALSE';
}
?>
TRUE
Source code project ini dapat di download di Github php-tutorial