👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.
How to create boolean variables in PHP?
In PHP, to create a boolean variables, use the constants TRUE
or FALSE
:
Note that boolean constants in PHP are case-insensitive, they must be written upper case.<?php
$myBoolean = TRUE;
// Specify a boolean literal set to FALSE
$myBoolean = FALSE;