Skip to content

Instantly share code, notes, and snippets.

@sokil
Last active September 24, 2016 18:24
Show Gist options
  • Select an option

  • Save sokil/8975edd37b89c8b21f49040d9c5a1ec2 to your computer and use it in GitHub Desktop.

Select an option

Save sokil/8975edd37b89c8b21f49040d9c5a1ec2 to your computer and use it in GitHub Desktop.
Amount formatter
<?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