Answers for "php if boolean check"

PHP
0

php if boolean check

$variable = true;

if($variable === true)
{
    //Something
}

if($variable)
{
    // Something
}
Posted by: Guest on February-21-2022

Browse Popular Code Answers by Language