/libs/Smarty/plugins/modifier.number_format.php
http://mithos-framework-muonline.googlecode.com/ · PHP · 7 lines · 5 code · 2 blank · 0 comment · 0 complexity · bbdddc3b5775e6f885d1880e379418a4 MD5 · raw file
- <?php
- function smarty_modifier_number_format($number, $precision = 0, $decimal = null, $thousands = '.') {
- return number_format($number, $precision, $decimal, $thousands);
- }
- ?>