如果我理解正确的话,有一些东西被称为id=3
,它从“2012-12-20 09:28:53”开始,然后在“2012-12-20 19:44:10”结束,在同一秒id=3
开始你想知道一切持续多久?
我会为所有记录做一个循环,但我会从结束开始(在 SQL: 中...ORDER BY date_time DESC
),假设最后一个结束(即id=5
从 2012-12-29 20:57:33 开始)是现在,那么我将持续时间计算为日期的减法(开始和结束),然后我会将事件开始作为前一个事件的结束,依此类推。
一个例子(未测试):
$end=now();
$dbh=new PDO(...); // here you need to connect to your db, see manual
while($record=$dbh->query('SELECT id, datetime FROM table_name ORDER BY datetime DESC')->fetchObject()){
$start=$record->datetime;
echo $duration=$end-$start; // convert $end and $start to timestamps, if necessary
$end=$start; // here I say that next (in sense of loop, in fact it is previous) record will end at the moment where this record started
}
这并不总和,因为我不知道你将如何存储你的数据,但我认为你会管理这个。
已编辑
一开始我定义了一个数组:
$durations=array(); // this will hold durations
$ids=array(); // this will hold `id`-s
$last_id=-1; // the value that is not existent
然后代码如下,而不是echo
我放这个:
$duration=$end-$start;
if($last->id==$record->id){ // is this the same record as before?
$durations[count($durations)-1]->duration+=$duration; // if yes, add to previous value
}
else { // a new id
$durations[]=$duration; // add new duration to array of durations
$ids[]=$record->id; // add new id to array of ids
$last_id=$record->id; // update $last_id
}
然后$end=$start
如上所述。
简单地查看所有持续时间和 ID
for($i=0;$i<count($durations);$i++){
echo 'id='.$ids[$i].', duration='.$durations[$i].'<br />';
}
请注意,这些表的顺序是相反的。