PHP保留两位小数(不四舍五入) By admin | 2022-01-16 阅读次数: PHP保留两位小数(不四舍五入)function FA($a){ $result = intval($a * pow(10, 2))/ pow(10, 2); return $result; }