Skip to content

Instantly share code, notes, and snippets.

@taichunmin
Created June 4, 2014 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taichunmin/c131de987a999b8f354f to your computer and use it in GitHub Desktop.
Save taichunmin/c131de987a999b8f354f to your computer and use it in GitHub Desktop.
<?php
function tai_moneyFormat($money)
{
$res = '';
$money = ''.$money;
for( $i=strlen($money)-1,$j=0; $i>=0; $i--,$j++)
{
$res .= $money[$i];
if($j%3==2 && $i>0) $res.=',';
}
return strrev($res);
}
//echo tai_moneyFormat(10000002);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment