<?php
function convertDates($timestamp) {
return date('Y-d-m', $timestamp);
}
$days = array(); //store all the times in this array
$occurences = array(); //count all the occurences for each day
$complete = array(); //fill in missing days in this array
$zero = array(); //missing days mean zero
$query = mysql_query("SELECT `login` FROM `statistics` ORDER BY `login` ASC");
while($rows = mysql_fetch_array($query)) {
$days[] = $rows['login'];
}
$days[] = time(); //append todays time in the array
for($i = 0; $i < count($days); $i++) {
$complete[] = convertDates($days[$i]);
$difference = isset($days[$i+1]) ? $days[$i+1] - $days[$i] : $days[$i] - $days[$i];
if($difference > 86400) {
$difference /= 86400;
$fill = $days[$i];
for($k = 0; $k < $difference; $k++) {
$fill += 86400;
$complete[] = convertDates($fill); //fill in missing days
$zero[] = convertDates($fill); //count this day as a zero
}
echo ceil($difference).' days missing between '.convertDates($days[$i+1]).' and '.convertDates($days[$i]).'<br/>';
}
//echo convertDates($days[$i]).'<br/>';
}
$occurences = array_count_values($complete); //count all duplicates of days, here will be the count of days
$complete = array_unique($complete); //remove duplicate days from array
sort($complete); //sort it again
//print_r($zero);
//print_r($occurences);
/*Here checking the logins for each day, including days that did not exist, but filled in as zero. Note calling them duplicates just means occurrences.*/
for($i=0; $i < count($occurences); $i++) {
if(in_array($complete[$i], $zero)) {
echo "$i [".$complete[$i]."] has 0 duplicates (". $occurences[$complete[$i]] .")<br/>";
} else {
echo "$i [".$complete[$i]."] has ".$occurences[$complete[$i]] . " duplicates<br/>";
}
}
echo "Days with empty days ".count($days)."<br/>";
echo "Days after being filled ".count($complete);
?>
我正在用 jqplot 制作图表,但我的时间戳遇到了问题。我可以将时间戳转换为一天。但是,该图不知道何时有非连续天在该天表示为零。
此图用于登录统计信息。如果没有登录,它将不在数据库中。我必须在空白的日子里定义零登录。我做了一个循环来填补数据库中没有的空白。
但是我遇到了另一个问题。由于它们的存在,我填写的天数被计为登录。我试图创建另一个数组$zero
来存储这些天,并检查这一天是否应该为零。我只是无法让它工作。
数据库中的值存储在 php 中,time();
我使用一个函数convertDates
将它们转换为天数。从这里开始有几天,所以要计算那天我使用了多少登录array_count_values()
并将其存储到另一个数组中。然后我删除了重复的日期并将日期与相应的array_count_values()
密钥配对。从这里我无法弄清楚如何确保在我填写的日子里,它显示为零。
jqplot 图不知道有零登录。我必须让 php 说那天是零。
有没有人有任何建议可以帮助我完成这项工作?
感谢您的时间。