執行 ❯
獲取您
自己的 PHP
伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The > Operator</h1> <p>Compare two variables and write a message if $x is greater than $y.</p> <?php $x = 100; $y = 50; if ($x > $y) { echo "$x is greater than $y"; } ?> </body> </html>
大於號 (>)
比較兩個變數,如果變數 x 大於變數 y,則顯示訊息。
100 大於 50