PHP, если логический чек
$variable = true;
if($variable === true)
{
//Something
}
if($variable)
{
// Something
}
Red Team
$variable = true;
if($variable === true)
{
//Something
}
if($variable)
{
// Something
}