Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php $result1 = true xor true; echo "true xor true = "; echo $result1 ? "true" : "false"; echo "<br>"; $result2 = (true xor true); echo "(true xor true) = "; echo $result2 ? "true" : "false"; ?> </body> </html>
true xor true = true
(true xor true) = false