1

我有来自数据库的数据。

+----+------------+----------+
| id |     date time        |  duration |
+----+------------+----------+-----------
| 3  | 2012-12-20  09:28:53 |     ?     |
| 1  | 2012-12-20  19:44:10 |    ?      |
| 2  | 2012-12-23  16:25:15 |           |
| 4  | 2012-12-23  18:26:16 |           |
| 4  | 2012-12-24  08:01:27 |           |
| 5  | 2012-12-29  20:57:33 |           | 
| 5  | 2012-12-29  20:57:33 |           | 
+----+------------+----------+------------
  • id 的持续时间#1应等于日期 id #2- id #1
  • id 的持续时间#2应等于日期 id #3- id #2

如果id相同,则会添加。

抱歉,这只是我的想法,在 php 中仍然很新,所以我不知道如何开始。任何帮助表示赞赏。谢谢

编辑按日期排序。第 1 条记录的持续时间或总时间 = 第 2 条记录 - 第 1 条记录

4

1 回答 1

0

如果我理解正确的话,有一些东西被称为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 />';
  }

请注意,这些表的顺序是相反的。

于 2013-03-01T08:50:02.440 回答