fork download
  1. <?php
  2.  
  3. $stats = array(
  4. "Gold"=>"12345678",
  5. "Silver"=>"1233333",
  6. "Metal"=>"99999"
  7. );
  8.  
  9. foreach($stats as $key => $value) {
  10. $result = number_format($value);
  11. echo $key.": ".$result."\n";
  12. }
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Gold: 12,345,678
Silver: 1,233,333
Metal: 99,999