运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The ! Operator</h1> <p>Write a message if the condition is NOT true.</p> <?php $x = 100; if (!($x == 90)) { echo "Hello world!"; } ?> </body> </html>
! 运算符
如果条件不成立,则写入一条消息。
Hello world!