Skip to content

Instantly share code, notes, and snippets.

@jonkiddy
Created July 31, 2012 15:21
Show Gist options
  • Save jonkiddy/3217773 to your computer and use it in GitHub Desktop.
Save jonkiddy/3217773 to your computer and use it in GitHub Desktop.
simple retirement calculator function
function retirement($salary, $years=30, $raise=1.029655){
$total = 0;
$data = array();
$format = '%=*(#10.2n';
setlocale(LC_MONETARY, 'en_US');
for($i=1;$i<=$years;$i++){
$salary = $salary*$raise;
$data[$i] = money_format($format, $salary);
$total = $total + $salary;
}
$data['total'] = money_format($format, $total);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment