将来の支払いと日付の配列を返す関数を作成しようとしています。
function getFuturePayments(){
$intMap = array();
$startVal = 1000.00;
$startDate = '2013-04-02';
$interest = 2.843; //(39.9% apr)
$minPayment = 62.92;
$intMap['00 - ' . date('o-m-d', strtotime($startDate))] = $startVal;
//----------------------------------------------
$int = $startVal * ($interest / 100);
$lastPayemt = $startVal + $interestAmount - $minPayment;
$intMap[sprintf('%02s', 1) .' - 2013-04-30'] = sprintf('%0.2f', $lastPayemt);
return $intMap;
}
これはすべて期待どおりに機能しますが、 for ループを追加して日付を 28 日増やし、残りの金額を計算します。私は自分が間違っていることについて迷っています。
これが私が望んでいることです。
//----------------------------------------------
$int2 = $lastPayemt * ($interest / 100);
$interestAmount2 = $this->roundUp($int2, 2);
$nextPayment = $lastPayemt + $interestAmount2 - $minPayment;
$intMap['02 - 2013-05-28'] = $nextPayment;
//----------------------------------------------
$int2 = $nextPayment * ($interest / 100);
$interestAmount2 = $this->roundUp($int2, 2);
$nextPayment = $nextPayment + $interestAmount2 - $minPayment;
$intMap['03 - 2013-06-25'] = $nextPayment;
//----------------------------------------------
$int2 = $nextPayment * ($interest / 100);
$interestAmount2 = $this->roundUp($int2, 2);
$nextPayment = $nextPayment + $interestAmount2 - $minPayment;
$intMap['04 - 2013-07-23'] = $nextPayment;
//----------------------------------------------
しかし、forループでそれを行う方法がわかりません。
for($i=0; $i < 27; $i++){ //hard coded for now
$date = date('o-m-d', strtotime($startDate .' + 28 days'));
$int2 = $lastPayemt * ($interest / 100);
$interestAmount2 = $this->roundUp($int2, 2);
$nextPayment = $lastPayemt + $interestAmount2 - $minPayment;
$intMap[ $i .' - ' . date('o-m-d', strtotime($date)) ] = $nextPayment;
}
出力
- [0 - 2013 年 4 月 30 日] => 1114.8
- [1 - 2013 年 4 月 30 日] => 1114.8
- [2 - 2013 年 4 月 30 日] => 1114.8
- [3 - 2013 年 4 月 30 日] => 1114.8
- [4 - 2013 年 4 月 30 日] => 1114.8
- [5 - 2013 年 4 月 30 日] => 1114.8
- [6 - 2013 年 4 月 30 日] => 1114.8
- [7 - 2013 年 4 月 30 日] => 1114.8
- [8 - 2013 年 4 月 30 日] => 1114.8
- [9 - 2013 年 4 月 30 日] => 1114.8
- [10 - 2013 年 4 月 30 日] => 1114.8
- [11 - 2013 年 4 月 30 日] => 1114.8
- ...
しかし、これは同じ値を何度も追加するだけです。
BlackMambo のおかげで、私はこれにたどり着きました -
for($i=0; $i < 27; $i++){ //hard coded for now
$date = date('o-m-d', strtotime($startDate . ' + 28 days'));
$int = $lastPayemt * ($interest / 100);
$interestAmount = $this->roundUp($int, 2);
$nextPayment = $lastPayemt + $interestAmount - $minPayment;
$lastPayemt = $nextPayment + $interestAmount - $minPayment;
$intMap[ $i .' - ' . date('o-m-d', strtotime($date)) ] = $nextPayment;
}
まだ日付を増やすのに問題があります。
最後に、みんなに感謝します。
for($i=1; $i < 27; $i++){ //hard coded for now
$lastDate = date('o-m-d', strtotime($startDate));
$lastDate = date('o-m-d', strtotime($lastDate . ' + 28 days'));
$startDate = date('o-m-d', strtotime($lastDate));
$int = $lastPayemt * ($interest / 100);
$interestAmount = $this->roundUp($int, 2);
$nextPayment = $lastPayemt + $interestAmount - $minPayment;
$nextPayment = $nextPayment + $interestAmount - $minPayment;
$lastPayemt = $nextPayment;
$intMap[sprintf('%02s', $i).' - '.date('o-m-d',strtotime($lastDate))]=$nextPayment;
}
最終作業関数
function getFuturePayments($startAmount, $startFromDate, $baseInterest, $minPayment){
$intMap = array();
$startVal = $startAmount;
$startDate = $startFromDate;
$interest = $baseInterest; //(39.9% apr / 34.1% compouned)
$minPayment = $minPayment;
$intMap['00 - ' . date('o-m-d', strtotime($startDate))] = $startVal;
//-----------------------------------------------------------------
$int = $startVal * ($interest / 100);
$interestAmount = roundUp($int, 2);
$lastPayemt = $startVal + $interestAmount - $minPayment;
$startDate = date('o-m-d', strtotime($startDate . ' + 28 days'));
for($i=1; $lastPayemt > 0; $i++){
$int = $lastPayemt * ($interest / 100);
$interestAmount = roundUp($int, 2);
$nextPayment = $lastPayemt;
$lastDate = date('o-m-d', strtotime($startDate));
$lastDate = date('o-m-d', strtotime($lastDate));
$startDate = date('o-m-d', strtotime($lastDate . ' + 28 days'));
$intMap[ sprintf('%02s', $i) . ' - ' . date('o-m-d', strtotime($lastDate)) ] = sprintf('%0.2f', $nextPayment);
$lastPayemt = $nextPayment + $interestAmount - $minPayment;
}
return $intMap;
}
//roundUp function from an answer here http://stackoverflow.com/questions/8239600/rounding-up-to-the-second-decimal-place
function roundUp ($value, $precision){
$pow = pow(10, $precision);
return (ceil($pow * $value) + ceil($pow * $value - ceil($pow * $value))) / $pow;
}
編集(構文修正+出力追加)。
edit2 (新しい for ループで更新)。
edit3(最終的に追加された作業コード)。
edit4(完全に機能する機能を追加)。