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