Skip to content

Instantly share code, notes, and snippets.

@petrusnog
Created May 14, 2020 19:34
Show Gist options
  • Save petrusnog/f0eb3d9a3ac5c49b968b2174bda794d6 to your computer and use it in GitHub Desktop.
Save petrusnog/f0eb3d9a3ac5c49b968b2174bda794d6 to your computer and use it in GitHub Desktop.
Brazilian Real Notation - A simple PHP snipppet to convert numbers to brazilian real currency.
function brazilian_real_notation ( $price = 0 ) {
return "R$" . number_format($price, 2, ',', '.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment