欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

舍去法取整 版本的 number_format() 函数

程序员文章站 2022-04-15 12:25:52
...
舍去法取整 版本的 number_format() 函数
/**
* 舍去法取整 版本的 number_format() 函数
* @author leeyi
*/
function number_format_floor($number, $decimals=0, $dec_point='.', $thousands_sep=',') {
$tmp = pow(10,$decimals);
return number_format(floor($tmp*($number))/$tmp, $decimals, $dec_point, $thousands_sep);
}

AD:真正免费,域名+虚机+企业邮箱=0元