Last active
September 24, 2016 18:24
-
-
Save sokil/8975edd37b89c8b21f49040d9c5a1ec2 to your computer and use it in GitHub Desktop.
Amount formatter
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
| <?php | |
| class Amount | |
| { | |
| public function getFormattedAmount($locale, $currency) | |
| { | |
| $formatter = new \NumberFormatter($locale, \NumberFormatter::CURRENCY); | |
| return $formatter->formatCurrency($this->amount, $currency); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment