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