Created
May 14, 2020 19:34
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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