<?php $data = [ ['Price' => 18, 'Quantity' => 2], ['Price' => 21, 'Quantity' => 1], ]; $total = array_sum(array_map('array_product', $data)); echo $total;
You have javascript disabled. You will not be able to edit any code.