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