运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The xor Operator</h1> <p>Write a message if one of the conditions are true, bot not if both conditions are true.</p> <?php $x = 100; $y = 50; if ($x == 100 xor $y == 80) { echo "Hello world!"; } ?> </body> </html>
异或运算符
如果其中一个条件为真,但两个条件都不为真时,则编写一条消息。
Hello world!