I need to round up any non-integer numbers to the nearest integer, regardless of whether the number after the decimal point is> 5 or not.
You can use the ceil($value) function in PHP to round.
ceil($value)
Similarly, you can use floor() to round.
floor()