hmm...
that will change
143.365986659 -> 143.37
not to 143.36 methinks.
You may have to use floor() instead, but apparently float() doesnt have a precision argument like round()
Conversely, you could use
$num *= 100;
$num = floor($num);
$num /= 100;
if you really need to round down, that is.