php
php copied to clipboard
unary operators aren't being ordered correctly with regard to operator precedence
We are currently parsing
echo (int)"0" || false;
As if it was
echo (int)("0" || false);