FPDF中的PHP百分比计算


Percentage Calculation in PHP in FPDF

我希望在基于FPDF的发票模板上进行百分比计算,该模板包含$total(例如1000)和数值$percentage(例如20)

理想情况下,我希望这显示为折扣

$pdf->Cell(100, 5, 'Discount' .$discountresult. '', 0, 'L');

如何做到这一点?如有建议,不胜感激。

像这样:

$total = 1000;
$percentage = 20;
$discountResult =  $total - (($percentage / 100) * $total);
$pdf->Cell(100, 5, 'Discount' . $discountResult, 0, 'L');