在PHP中,可以使用array_sum()函數來計算數組中所有元素的總和。例如:
$numbers = [1, 2, 3, 4, 5];
$total = array_sum($numbers);
echo $total; // 輸出15
也可以使用foreach循環來計算數組中所有元素的總和,例如:
$numbers = [1, 2, 3, 4, 5];
$total = 0;
foreach ($numbers as $number) {
$total += $number;
}
echo $total; // 輸出15