modifier.number_format.php
来自「支持中、英、繁三种语言; 3、提供9套风格任意转换; 4、内嵌全球免」· PHP 代码 · 共 25 行
PHP
25 行
<?php/* * Smarty plugin *------------------------------------------------------------- * File: modifier.number_format.php * Type: modifier * Name: number_format * Version: 1.0 * Date: May 1st, 2002 * Purpose: pass value to PHP number_format() and return result * Install: Drop into the plugin directory. * Author: Jason E. Sweat <jsweat_php@yahoo.com> *------------------------------------------------------------- */function smarty_modifier_number_format($string, $places){ return number_format($string, $places);}/* vim: set expandtab: */?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?