请高手帮忙写个代码,PHP按百分比扣除费率,我的代码是这样的,例如,

2024-12-02 09:11:05
推荐回答(1个)
回答1:

$total = 100;
$fee = 0.8;
function money($total, $fee)
{
    return number_format($total - $total * $fee/100, 2, '.', ',');
}

echo money($total, $fee);

99.20  这样行不?