//万数转换 function FormatMoney($money){ if($money>=1000){ sprintf("%.2f", $money/10000); return sprintf("%.2f", $money/10000); }else{ return $money; }