1 2 3 4 5 6 7 8 9 10 11 12
--TEST-- Operator precedence --FILE-- <?php var_dump((object)1 instanceof stdClass); var_dump(! (object)1 instanceof Exception); ?> --EXPECT-- bool(true) bool(true)