主页
PHP
PHP 运算符
tryphp_oper_less_than2
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = 50; $y = 50; var_dump($x <= $y); // returns true because $x is less than or equal to $y ?>
bool(true)