Skip to content

Instantly share code, notes, and snippets.

@Sigmus
Created May 22, 2013 19:31
Show Gist options
  • Save Sigmus/5630237 to your computer and use it in GitHub Desktop.
Save Sigmus/5630237 to your computer and use it in GitHub Desktop.
<?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