Less than or equal to.
This comparison operator returns TRUE if the first expression is less than, or equal to, the second.
<?php
if (5 <= 5)
print "5 is less than or equal to 5";
?> 5 is less than or equal to 5Two numbers are compared.