I was wondering what php function could help me to do what I am looking for. I want to round number to the half up.
For example:
1.16 => 1.5,
0.5 => 0.5
1 => 1
I wanted to use round function like this :
round(1.16, 0.5, PHP_ROUND_HALF_UP)
But it returns 1
instead of 1.5
. I probably dont understand well what the function is doing.