PageRenderTime 63ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/modules/smarty/plugins/modifier.number_format.php

https://github.com/dmkfasi/molinos-cms
PHP | 5 lines | 5 code | 0 blank | 0 comment | 0 complexity | 9eae9088353a67d3d9c4fb439eb09121 MD5 | raw file
Possible License(s): AGPL-1.0
  1. <?php
  2. function smarty_modifier_number_format($string) {
  3. return(number_format($string, 0, '.', ' '));
  4. }
  5. ?>