Skip to content

Instantly share code, notes, and snippets.

@joeyemery
Created June 29, 2015 18:05
Show Gist options
  • Save joeyemery/ac2032a65921087ee402 to your computer and use it in GitHub Desktop.
Save joeyemery/ac2032a65921087ee402 to your computer and use it in GitHub Desktop.
At least X decimal places.
public static function forceDecimals($num, $dec = 2)
{
for ($x=0;$x<=5;$x++) {
if ($num == $tmp_num=sprintf("%01.".($dec+$x)."f",$num)) {
return $tmp_num;
}
}
return $num;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment