執行 ❯
獲取您
自己的 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>
! 運算子
如果條件為假,則寫入一條訊息。
你好,世界!