Le
Updated: 04/26/2017 by Computer Hope
Short for less than or equal to, le is an operator also represented as "<=" used in programming, with some commands, and in mathematics.
if ($value1 le $value2) { do this; }
In the above example, if value1 is less than or equal to value2, it would perform the operation do this. Otherwise, it would continue through the program.