How to combine number in PHP?

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.

+7
php rounding
source share
1 answer

You can use the ceil($value) function in PHP to round.

Similarly, you can use floor() to round.

+11
source share

All Articles