Last active
December 16, 2015 08:29
-
-
Save Sigmus/5406012 to your computer and use it in GitHub Desktop.
Return value in R$
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
<?php | |
/** | |
* Return value in R$ | |
* | |
* @param float $value | |
* @return string | |
*/ | |
function reais($value) | |
{ | |
return number_format($value, 2, ',', '.'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment