<!DOCTYPE html>
<html>
<body>
<?php
$x = 17;
$y = 17;
var_dump($x <= $y); // 返回 true,因为 $x 等于 $y
?>
</body>
</html>