The following small series for everyone to bring a PHP mortgage calculator instance Code, equal and principal interest, equal to the principal. Small series feel very good, now share to everyone, also for everyone to make a reference. Let's take a look at it with a little knitting.
Examples are as follows:
DEBX (); function Debx () {$dkm = 240;//Loan month, 20 is 240 months $dkTotal = 10000;//Total loan $dknl = 0.0515;//Loan annual interest rate $emT Otal = $dkTotal * $DKNL/12 * POW (1 + $dknl/12, $dkm)/(POW (1 + $dknl/12, $dkm)-1); Monthly repayment Amount $lxTotal = 0; Total interest for ($i = 0; $i < $dkm; $i + +) {$LX = $dkTotal * $DKNL/12; Monthly repayment Interest $em = $emTotal-$LX; Monthly repayment principal echo "first". ($i + 1). "Period", "Principal:", $em, "interest:". $LX, "total:". $emTotal, "<br/>"; $dkTotal = $dkTotal-$em; $lxTotal = $lxTotal + $lx; } echo "Total interest:". $lxTotal; } function Debj () {$dkm = 240;//Loan month, 20 is 240 months $dkTotal = 10000;//Total loan $dknl = 0.0515;//Loan Rate $em = $dkTotal/$dkm; Repayment principal $lxTotal per month = 0; Total interest for ($i = 0; $i < $dkm; $i + +) {$LX = $dkTotal * $DKNL/12;//monthly repayment interest echo "first". ($i + 1). "Period", "Principal:", $em, "interest:". $LX, "total:". ($em + $lx), "<br/>"; $dkTotal-= $em; $lxTotal = $lXtotal + $lx; } echo "Total interest:". $lxTotal; } exit;