运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The and Operator</h1> <p>Write a message if both conditions are true.</p> <?php $x = 100; $y = 50; if ($x == 100 and $y == 50) { echo "Hello world!"; } ?> </body> </html>
与运算符
如果两个条件都为真,则编写一条消息。
Hello world!