用php或者js处理数字

处理数字
譬如 12300 显示1.23万

 123984 显示12.39万
 1239845 显示123.98万
 12398456 显示1239.84万
 123984567 显示1.23亿
 1239845676 显示12.39亿


LEATH
浏览 501回答 1
1回答

开心每一天1111

<?phpfunction parse($num) {&nbsp; &nbsp; $strLen = strlen($num);&nbsp; &nbsp; if ($strLen >= 0 && $strLen <= 8) {&nbsp; &nbsp; &nbsp; &nbsp; return (intval(intval($num) / 100) / 100) . '万';&nbsp; &nbsp; } else {&nbsp; &nbsp; &nbsp; &nbsp; return (intval(intval($num) / 1000000) / 100) . '亿';&nbsp; &nbsp; }}echo parse(123984);echo parse(123984567);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript