我有数组,其中键是数学运算的值。
$a = array('1'=>'100','4'=>'25','3'=>'10');
$b = array('1'=>'120','5'=>'40','3'=>'5');
$c = array('1'=>'300','3'=>'15','2'=>'75');
$d = array('1'=>'75','5'=>'15');
操作清单:
$list = array(
'1' => 'Set the price',
'2' => 'Raise by the number',
'3' => 'Decrease by the number',
'4' => 'Increase by %',
'5' => 'Decrease by %',
);
所以我需要从每个数组中获取单个值,这个值将是数学运算的结果,例如:
1) $summ_a = 100 + 100*0,25 -10;
2) $summ_b = 120 - 120*0,4 -5;
3) $summ_c = 300 - 15 +75;
我尝试了无效的内置php函数,如array_walk,array_reduce等 并且不知道如何实现这一点。
如何实现这一目标?任何帮助都会非常感激。