当前位置:Gxlcms > PHP教程 > thinkphp-php保留2位小数不四舍五入

thinkphp-php保留2位小数不四舍五入

时间:2021-07-01 10:21:17 帮助过:3人阅读

thinkphpphp

float类型参数要保留两位数,但不进行四舍五入要怎么做??

            $num = 123213.666666;              dump(sprintf("%.2f",substr(sprintf("%.3f", $num), 0, -2)));

这个方式得到的结果是--123213.60--我需要的结果是123213.66

人气教程排行