运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The or Operator</h1> <p>Write a message if at least one of the conditions are true.</p> <?php $x = 100; $y = 50; if ($x == 100 or $y == 80) { echo "Hello world!"; } ?> </body> </html>
或运算符
如果至少一个条件为真,则写一条消息。
你好世界!