Created
October 28, 2013 16:52
-
-
Save drakakisgeo/7200450 to your computer and use it in GitHub Desktop.
Money Format (decimal db value to Euro)
This file contains 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 money($amount){ | |
setlocale(LC_MONETARY, 'el_GR.UTF-8'); | |
return money_format("%!n",$amount); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment