gpt4 book ai didi

php - 总结一个foreach结果PHP

转载 作者:行者123 更新时间:2023-11-29 03:17:39 24 4
gpt4 key购买 nike

我很难用php对结果求和,我有以下代码:

[<?php foreach($results2 as $i) : ?>
<?php echo $i['count'] ?>,
<?php endforeach; ?>]

回声:
0,0,0,0,7,0,2

我想对这些值求和,而不是回显每个值,我尝试过使用 count($i)但它不起作用

最佳答案

结合array_sumarray_column
$count = array_sum(array_column($results2, 'count'));

关于php - 总结一个foreach结果PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52396665/

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