1
2
3
4
function amortization_array($principal, $interest_rate, $start_year, $start_month, $term, $group_by = 'M, Y', $month_names){
	$periods  = $term * 12;
	$balance  = $principal;
...

PHP Mortgage Calculator

by jcapote, September 24, 2008 23:27, 4 refactorings

How would you refactor this...

9dc24638923a6aee9fd3571c14f01066 Talk