我有一个数组,里面有一些信息。
有两个重要的键datum
和answer
。
我想查看密钥answer每年对值进行fout分组的次数(datum包含年份,因此在此数组中有两年2019和2020)
我如何看待2019年和2020年fout发生多少次datum?
因此,例如,我看到以下内容:
2019 - 5 times fout
2020 - 0 times fout
我试图在创建数组的循环中进行计数,但由于某种原因,它总是返回0。
这是我之前尝试过的(开始):
while($getwpi = $getwpicon->fetch_assoc()){
$year = date('Y', strtotime($getwpi['datum']));
$getwpi['datum'] = $year; // update your field
$wpi[] = $getwpi; // add to the result array
$counted = count($wpi['datum']);
}
但$counted返回0。
这是我目前的循环:
while($getwpi = $getwpicon->fetch_assoc()){
$year = date('Y', strtotime($getwpi['datum']));
$getwpi['datum'] = $year; // update your field
$wpi[] = $getwpi; // add to the result array
}
守候你守候我
互换的青春