php str_replace 替换 计算
Posted GavinXxg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php str_replace 替换 计算相关的知识,希望对你有一定的参考价值。
$formula = "((物料总额/1000)+生产费用+销售费用+管理费用+利润金额)*成本系数*地区系数" //计算公式 //数量 $total=10; //总 $production_cost = 1; //生产费用 $sales_cost = 2; //销售费用 $management_cost = 3; //管理费用 $profit = 4; //利润金额 $costfactor = 5; //成本系数 $replace = array($total, $production_cost, $sales_cost, $management_cost, $profit, $costfactor, ‘1‘); $formula = str_replace($find, $replace, $formula); //字符串替换 print_r($formula);die; //单价 $unitPrice = eval("return $formula"); //把字符串当成 php 代码来计算
以上是关于php str_replace 替换 计算的主要内容,如果未能解决你的问题,请参考以下文章
php 'preg_match_all' 和 'str_replace':用数组键替换常量的正则表达式