マニュアルにも書いてあるけど、下記で簡単にSmartyの変数の修飾子が増えるゾ!
$smarty = new Smarty; $smarty->register_modifier("number_format","number_format"); $smarty->register_modifier("stripslashes","stripslashes");
この二つは結構使うので便利。
金額: {$cost|number_format}円
こう書くと、
金額: 2,109,800円
という感じで。
stripslashesはmagic quoteとかやってる場合に元に戻す時に便利。