Ejemplo n.º 1
0
function twig_localized_currency_filter($number, $currency = null, $locale = null)
{
    $formatter = twig_get_number_formatter($locale, 'currency');
    return $formatter->formatCurrency($number, $currency);
}
Ejemplo n.º 2
0
 function _getCurrencySymbol($currency, $locale = null)
 {
     $formatter = twig_get_number_formatter("{$locale}@currency={$currency}", 'currency');
     return $formatter->getSymbol(NumberFormatter::CURRENCY_SYMBOL);
 }