Skip to content

Instantly share code, notes, and snippets.

@fabiobruna
Last active June 22, 2016 11:41
Show Gist options
  • Save fabiobruna/3967fb26159343afb45be40607382071 to your computer and use it in GitHub Desktop.
Save fabiobruna/3967fb26159343afb45be40607382071 to your computer and use it in GitHub Desktop.
EUR/bedrag NL format
function valuta($s)
{
if (empty($s)) {
return false;
} else {
$s = sprintf('€'." %s", number_format($s, 2, ',', '.'));
return $s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment