Why does this evaluate true?
$test = true and false;
And this not?
$test = (true and false);
With the && operator it both evaluates to false, which is what I also would expect with the and operator. Apparently they are not interchangable, apart from the fact that they have a different precedence.