<!DOCTYPE html>
<html>
<body>
<?php
$x = 10;
$y = 50;
var_dump($x < $y); // возвращает true, потому что $x меньше $y
?>
</body>
</html>