Skip to content

Instantly share code, notes, and snippets.

@gsmcwhirter
Created July 7, 2010 16:28
Show Gist options
  • Save gsmcwhirter/466915 to your computer and use it in GitHub Desktop.
Save gsmcwhirter/466915 to your computer and use it in GitHub Desktop.
function my_format_number($num)
{
$num = number_format(round($num, 2), 2, ".","");
return substr($num, -2) == "00" ? substr($num,0,-3) : $num;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment