game/onyx2/modules/templates/smarty/plugins/modifier.separerNombres.php

28 lines
485 B
PHP
Raw Normal View History

2008-09-20 10:00:00 +00:00
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty plugin
2008-09-20 10:00:00 +00:00
*
* Type: modifier<br>
* Name: separenombre<br>
* Date: Aug 22, 2008
* Purpose: separe number
* Example: {$text|separenombre}
2008-09-20 10:00:00 +00:00
* @version 1.0
* @author Nemunaire <nemunaire at gmail dot com>
* @param string
2008-09-20 10:00:00 +00:00
* @return string
*/
function smarty_modifier_separerNombres($string)
2008-09-20 10:00:00 +00:00
{
return number_format(floor($string), 0, ',', ' ');
2008-09-20 10:00:00 +00:00
}
/* vim: set expandtab: */