银行贷款计算器

v2.2.0 2016-09-07 11:59 UTC

This package is auto-updated.

Last update: 2024-09-22 14:19:09 UTC


README

Join the chat at https://gitter.im/bankloan/Lobby

摊销计划计算器

Build Status Code Coverage Latest Stable Version Total Downloads license

##安装

使用Composer安装库。

$ composer require jiangbianwanghai/bankloan

##使用方法

<?php
require_once __DIR__.'/vendor/autoload.php';
use Jiangbianwanghai\BankLoan\BankLoan;
$bl = new BankLoan(['loanAmount' => 100000, 'year' => 10]);
var_dump($bl->getELP()); // Get equal loan payments result.
var_dump($bl->getEPP()); // Get equal principal payments result.

##注意

目前仅支持中国。

##许可证 MIT许可证(MIT)。请参阅许可证文件以获取更多信息。