fork download
  1. <?php
  2.  
  3.  
  4. function creditBalanceMonth ($comm, $percent, $onePay, $credit, $payout) {
  5.  
  6. for ($i=0; $credit>0; $i++) {
  7.  
  8. $monthPay=$credit*$percent+$comm;
  9. $credit=$credit+$monthAdd+$onePay;
  10. $credit=$credit-$payout;
  11. }
  12. return $credit;
  13. return $i;
  14. }
  15.  
  16. $pay=creditBalanceMonth(1000, 1.05, 0, 40000, 5000);
  17. $month=$i;
  18. echo "$pay\n $month";
Success #stdin #stdout #stderr 0.02s 25644KB
stdin
Standard input is empty
stdout
0
 
stderr
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: monthAdd in /home/TheysE/prog.php on line 10
PHP Notice:  Undefined variable: i in /home/TheysE/prog.php on line 18