How PHP implements a mortgage calculator

Source: Internet
Author: User
This article mainly introduces PHP to implement the method of mortgage calculator, interested in the friend's reference, I hope to help you.

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;

The above is the whole content of this article, I hope that everyone's study has helped.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.