php jika boolean memeriksa

$variable = true;

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

if($variable)
{
    // Something
}
Red Team