Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public static function toDocumentInRoubles($number) |
||
27 | { |
||
28 | list($real, $float) = explode('.', sprintf("%0.2f", round((float)($number), 2))); |
||
29 | |||
30 | $formatter = new Formatter(new Rouble()); |
||
31 | $result = $formatter->asWords((int)$real); |
||
32 | |||
33 | $result .= " {$float} коп."; |
||
34 | |||
35 | return $result; |
||
36 | } |
||
37 | } |