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

12 lines
193 B
PHP
Executable file

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