<?php function roudUp(float $amount) : string { $fraction = 2; $mult = pow(10, $fraction); $roundedUp = ceil($amount * $mult) / $mult; return number_format($roundedUp, 2); } echo roudUp(1.6);
You have javascript disabled. You will not be able to edit any code.