数値をカンマ付き数字に変換する

number_format()という関数がある

<?php
  $num = 12345678;
  echo $num . "\n";
  $num = number_format($num);
  echo $num . "\n";
?>