运行 ❯
获取您的
个人 PHP
服务器
×
更改方向
更改主题深色/浅色
转到 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