string_format

PHP Smarty

Smarty - the compiling PHP template engine
Prev 来源:PHP中文社区 Chapter 5. Variable Modifiers[变量调节器] Next

string_format 字符串格式化

Parameter Position参数位置 Type参数类型 Required必需 Default默认 Description描述
1 string Yes n/a This is what format to use. (sprintf)
使用的格式化方式
index.php:

$smarty = new Smarty;
$smarty->assign('number', 23.5787446);
$smarty->display('index.tpl');

index.tpl:

{$number}
{$number|string_format:"%.2f"}
{$number|string_format:"%d"}

OUTPUT:

23.5787446
23.58
24

Prev 来源:PHP中文社区 Home Next
spacify[插空] Up strip[去除(多余空格)]