locale->numberFormatter->formatCurrency($value, $currency); } public static function number($value, $einheit = '') { return Yii::app()->locale->numberFormatter->formatDecimal($value).' '.$einheit; } public static function decimal($value) { return Yii::app()->locale->numberFormatter->formatDecimal($value); } public static function percentage($value) { return Yii::app()->locale->numberFormatter->formatPercentage($value); } }