Created
May 22, 2013 19:31
-
-
Save Sigmus/5630237 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
private function priceTable($taxa, $quantParcelas, $valor) | |
{ | |
$valor1 = $taxa * pow((1 + $taxa), $quantParcelas); | |
$valor2 = pow((1 + $taxa), $quantParcelas) - 1; | |
$pgto = $valor * ($valor1 / $valor2); | |
return $pgto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment