php二维数组计算金额
文章描述:
php统计金额和计算数量
// 假设有一个包含多个订单的二维数组
$orders = [
['id' => 1, 'amount' => 100.00],
['id' => 2, 'amount' => 150.00],
['id' => 3, 'amount' => 200.00],
// ... 更多订单
];
// 计算所有订单的总金额
$totalAmount = array_sum(array_column($orders, 'amount'));
// 计算所有订单的数量
$orderCount = count($orders);
// 输出结果
echo "总金额: " . $totalAmount . "\n";
echo "订单数量: " . $orderCount . "\n";
结果:总金额: 450 订单数量: 3
发布时间:2024/12/23
发表评论