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

28 lines
481 B
PHP
Raw Normal View History

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