How to implement mortgage calculator in PHP

墨辰丷
Release: 2023-03-27 18:58:02
Original
3585 people have browsed it

This article mainly introduces the method of implementing a mortgage calculator in PHP. Interested friends can refer to it. I hope it will be helpful to everyone.

The examples are as follows:

debx(); 
   
  function debx() 
  { 
    $dkm   = 240; //贷款月数,20年就是240个月 
    $dkTotal = 10000; //贷款总额 
    $dknl  = 0.0515; //贷款年利率 
    $emTotal = $dkTotal * $dknl / 12 * pow(1 + $dknl / 12, $dkm) / (pow(1 + $dknl / 12, $dkm) - 1); //每月还款金额 
    $lxTotal = 0; //总利息 
    for ($i = 0; $i < $dkm; $i++) { 
      $lx   = $dkTotal * $dknl / 12;  //每月还款利息 
      $em   = $emTotal - $lx; //每月还款本金 
      echo "第" . ($i + 1) . "期", " 本金:", $em, " 利息:" . $lx, " 总额:" . $emTotal, "<br />"; 
      $dkTotal = $dkTotal - $em; 
      $lxTotal = $lxTotal + $lx; 
    } 
    echo "总利息:" . $lxTotal; 
  } 
   
   
  function debj() 
  { 
    $dkm   = 240; //贷款月数,20年就是240个月 
    $dkTotal = 10000; //贷款总额 
    $dknl  = 0.0515; //贷款年利率 
      
    $em   = $dkTotal / $dkm; //每个月还款本金 
    $lxTotal = 0; //总利息 
    for ($i = 0; $i < $dkm; $i++) { 
      $lx   = $dkTotal * $dknl / 12; //每月还款利息 
      echo "第" . ($i + 1) . "期", " 本金:", $em, " 利息:" . $lx, " 总额:" . ($em + $lx), "<br />"; 
      $dkTotal -= $em; 
      $lxTotal = $lxTotal + $lx; 
    } 
    echo "总利息:" . $lxTotal; 
  } 
   
   
  exit;
Copy after login

The above is the entire content of this article, I hope it will be helpful to everyone learning helps.


Related recommendations:

Coupled design pattern of PHP

PHP’s standard library

PHP Collection of commonly used functions

The above is the detailed content of How to implement mortgage calculator in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!