// Less than or equal to comparison operator: <=
if ($someInt <= $otherInt) {
// Do your logic ;)
}
// Greater than or equal to comparison operator: >=
if ($someInt >= $otherInt) {
// Do your logic ;)
}
Greater than or equal to comparison operator: >=