2013-09-16 24 views

回答

2

只要使用PHP的內置功能number_format

$num = 31131; 
$num = number_format($num); 

echo $num; 

輸出:

31,131 

Smarty的方式:

先定義你的電話號碼:現在

$smarty->assign('number', 31131); 

,在你的模板文件,你可以這樣做:

{$number|number_format} 

輸出:

31,131 

查看documentation瞭解更多示例。

Demo!

+0

+1的答案!但演示不起作用! –

+1

@Deepanshu:更新了答案,謝謝。 –

3

您可以使用PHP number_format功能智者

{$number|number_format}