Voting

: max(seven, five)?
(Example: nine)

The Note You're Voting On

craft at ckdevelop dot org
11 years ago
function mround($val, $f=2, $d=6){
return sprintf("%".$d.".".$f."f", $val);
}

echo mround(34.89999); //34.90

<< Back to user notes page

To Top