运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The <= Operator</h1> <p>Compare two variables and write a message if $y is less than, or equal to, $x.</p> <?php $x = 100; $y = 100; if ($y <= $x) { echo "$y is less than, or equal to $x"; } ?> </body> </html>
<= 运算符
比较两个变量,如果 $y 小于或等于 $x,则写一条消息。
100 小于或等于 100