码迷,mamicode.com
首页 > Web开发 > 详细

php str_replace 替换 计算

时间:2020-03-18 13:16:43      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:管理   计算   turn   pre   销售   fit   str   replace   manage   

$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 替换 计算

标签:管理   计算   turn   pre   销售   fit   str   replace   manage   

原文地址:https://www.cnblogs.com/xiangangXu1997/p/12516737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!