Skip to content

Instantly share code, notes, and snippets.

@ctrl-freak
Created July 12, 2011 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrl-freak/1077210 to your computer and use it in GitHub Desktop.
Save ctrl-freak/1077210 to your computer and use it in GitHub Desktop.
Moneyify MySQL DECIMAL Value
<?
function moneyify($value) {
$value = ((int)$value == (float)$value) ? (int)$value : (float)$value;
$value = number_format($value);
return $value;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment