Just curious what function is faster:
sprintf or round?
I will be using the function for rounding to currency, as follows:
$num = sprintf('%01.2f', $num);
OR
$num = round($num, 2);
The number_format() function is not what I need, as this adds commas, which cannot be used when doing calculations.
Thanks.