How to check if an integer is within a range of numbers in PHP?

The expression:

($min <= $value) && ($value <= $max)

will be true if $value is between $min and $max, inclusively

See the PHP docs for more on comparison operators

Leave a Comment