php-censor/src/B8Framework/View/Helper/Format.php
2016-06-23 21:18:41 +06:00

11 lines
177 B
PHP
Executable file

<?php
namespace b8\View\Helper;
class Format
{
public function Currency($number, $symbol = true)
{
return ($symbol ? '£' : '') . number_format($number, 2, '.', ',');
}
}