2011-05-10 数値をカンマ付き数字に変換する PHP number_format()という関数がある <?php $num = 12345678; echo $num . "\n"; $num = number_format($num); echo $num . "\n"; ?>