Hello everyone and thanks for reading . I was wondering how i could format a number into a currency or just simply attach € at the end. I am working in a gridview on the admin page in the yii framework. i have this as eg
'columns'=>array(
'title',
array(
'name'=>'cost',
'value'=>'$data->cost',
)
The Yii way would be to use Yii's existing currency formatter, like this:
array(
'name'=>'cost',
'value'=>'Yii::app()->numberFormatter->formatCurrency($data->cost, "EUR")',
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With