PHP3桁カンマを入れる 金額用

$a = 987654321;
$b = number_format($a);
echo $b;

987,654,321

ちなみにSmartyであればテンプレにそのままいける

{$DATA.total|number_format}円