php-censor/src/B8Framework/View/Helper/Format.php

11 lines
177 B
PHP
Raw Normal View History

2016-04-12 19:31:39 +02:00
<?php
namespace b8\View\Helper;
class Format
{
public function Currency($number, $symbol = true)
{
return ($symbol ? '£' : '') . number_format($number, 2, '.', ',');
}
}