How do I get NumberFormatter to print negative currency values with a minus sign?
I'm using the PHP NumberFormatter class to print currency values. Eg: $cFormatter = new NumberFormatter('en_US', NumberFormatter::CURRENCY); $cFormatter->formatCurrency(123, 'USD'); $cFormatter->formatCurrency(123, 'BRL'); $cFormatter->formatCurrency(123, 'GBP'); That works fine, and returns "$123.00", "R$123.00", "£123.00" r...