In PHP error reporting,
E_ALLequals 8191 (1111111111111)E_STRICTequals 2048 (100000000000)
Using bitwise OR to combine them:
1111111111111
100000000000
we still get:
1111111111111
Why is the result of E_ALL | E_STRICT the same as E_ALL?
How does error_reporting() function distinguish between E_ALL | E_STRICT and E_ALL?
