Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Last active December 21, 2015 14:48
Show Gist options
  • Save ziadoz/6322157 to your computer and use it in GitHub Desktop.
Save ziadoz/6322157 to your computer and use it in GitHub Desktop.
PHP NumberFormatter and ICU Decimal Patterns
<?php
// ICU Decimal Patterns:
// http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#details
$price = 1560.52;
$formatter = new NumberFormatter('en_CA', NumberFormatter::CURRENCY);
// Default ICU Decimal Pattern:
echo $formatter->getPattern(); // ¤#,##0.00;(¤#,##0.00)
echo $formatter->format($price); // $1,560.52
// Custom ICU Decimal Pattern:
$formatter->setPattern('¤#,##0.00 ¤¤;(¤#,##0.00 ¤¤)');
echo $formatter->format($price); // $1,560.52 CAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment