gpt4 book ai didi

php - Mysql while 循环累加数字

转载 作者:行者123 更新时间:2023-11-30 00:05:37 24 4
gpt4 key购买 nike

    $oneweek = date("Y-m-d",strtotime("-1 week"));
$currentdate = date("Y-m-d");

$result = mysqli_query($con, "SELECT * FROM `76561198047786230` WHERE date >= '$oneweek' AND date <= '$currentdate'");


while($row = mysqli_fetch_array($result)) {
echo $row['start'];
}



id start end date
2 22 23:18 2014-07-03 22:09:16
3 3 03:43 2014-07-04 03:09:10
4 12 13:38 2014-07-04 12:04:19
5 14 16:43 2014-07-04 14:08:53

我的 table 是这样的 ^

当我运行 while 循环时,它将收集这些数据

22
3
12
14

我的问题是,因为它是在循环中执行的,所以它会分别回显出来,所以我如何获取所有这些值并将它们相加,得到 22 + 3 + 12 + 14 = 51?

最佳答案

尝试如下操作:

$count = 0;
while($row = mysqli_fetch_array($result))
{
$count += $row['start'];
}

echo $count; // 51

关于php - Mysql while 循环累加数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24583540/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com