PageRenderTime 49ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/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
  1. <?php
  2. function smarty_modifier_number_format($number, $precision = 0, $decimal = null, $thousands = '.') {
  3. return number_format($number, $precision, $decimal, $thousands);
  4. }
  5. ?>