本文实例讲述了PHP计算个人所得税。分享给大家供大家参考,具体如下:
不使用速算扣除数计算个人所得税,PHP自定义函数实现个人所得税计算。使用速算扣除数计算个人所得税过于简单,略过不提。
PHP和JS有相同之处,知道PHP计算个人所得税的方法以后,也可以同理写出JS代码个算个人所得税。不同之处在于,javascript没有foreach()
这样的语法结构,不过随着时代的变迁,现代浏览器中JS ECMASCRIPT 5也开始支持forEach()
方法了。
PHP;">
PHP
/* PHP不使用速算扣除数计算个人所得税
* @author 吴先成
* @param float $salary 含税收入金额
* @param float $deduction 保险等应当扣除的金额 默认值为0
* @param float $threshold 起征金额 默认值为3500
* @return float | false 返回值为应缴税金额 参数错误时返回false
*/
function getPersonalIncoMetax($salary,$deduction=0,$threshold=3500){
if(!is_numeric($salary) || !is_numeric($deduction) || !is_numeric($threshold)){
return false;
}
if($salary <= $threshold){
return 0;
}
$levels = array(1500,4500,9000,35000,55000,80000,PHP_INT_MAX);
$rates = array(0.03,0.1,0.2,0.25,0.3,0.35,0.45);
$taxableIncome = $salary - $threshold - $deduction;
$tax = 0;
foreach($levels as $k => $level){
$prevIoUsLevel = isSet($levels[$k-1]) ? $levels[$k-1] : 0;
if($taxableIncome <= $level){
$tax += ($taxableIncome - $previousLevel) * $rates[$k];
break;
}
$tax += ($level-$previousLevel) * $rates[$k];
}
$tax = round($tax,2);
return $tax;
}
/* 示例 */
echo getPersonalIncomeTax(10086.11);
//运行结果:762.22
?>
PS:这里再为大家推荐几款相关的在线计算工具供大家参考:
在线个人所得税计算工具(2011版):
在线存款计算器:
》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/16206.html