/class/Plugin/Smarty/modifier.number_format.php
http://github.com/ethna/ethna · PHP · 26 lines · 8 code · 2 blank · 16 comment · 3 complexity · 2bdc805ed2c55c683eec81706aa67034 MD5 · raw file
- <?php
- /**
- * smarty modifier:number_format()
- *
- * number_format()関数のwrapper
- *
- * sample:
- * <code>
- * {"12345"|number_format}
- * </code>
- * <code>
- * 12,345
- * </code>
- *
- * @param string $string フォーマット対象文字列
- * @return string フォーマット済み文字列
- */
- function smarty_modifier_number_format($string)
- {
- if ($string === "" || $string == null) {
- return "";
- }
- return number_format($string);
- }