Eu uso a técnica de 'leitura antecipada' para processar loops aninhados. Isso significa que os loops 'foreach' não podem ser usados, pois o próximo registro deve ser lido assim que o atual for processado. Basicamente, a última ação que você faz no loop é ler o próximo registro enquanto você o configura para a próxima iteração. Observe que você nunca testa quando imprimir um registro, pois isso é decidido pela estrutura dos grupos. Os loops de código são os mesmos que a estrutura dos grupos nos dados
Um 'grupo' é todos os registros com o mesmo id .
Presumo que o 'conteúdo' e o 'ato' sejam idênticos para cada entrada no grupo.
Editado para adicionar atributos 'rowspan' às tags 'td' apropriadas. Eu suspeito que o CSS pode ser mais fácil neste momento.
O problema é que o grupo não pode ser exibido até que se saiba quantas entradas estão nele.
Então, eu 'buffer' todos os registros pertencentes a um grupo em um array. no final do grupo, ele é exibido com os atributos 'rowspan' apropriados no html.
Ele é testado em PHP 5.3.18. Inclui dados de teste.
<?php /* Q24028866 */
$testData = array(array('id' => 2, 'date' => '05/13/2014', 'content' => 'some contents 2', 'act' => 'act1 act2 act3'),
array('id' => 2, 'date' => '05/28/2014', 'content' => 'some contents 2', 'act' => 'act1 act2 act3'),
array('id' => 7, 'date' => '06/04/2014', 'content' => 'some contents 7', 'act' => 'act1 act2 act3'),
array('id' => 8, 'date' => '06/08/2014', 'content' => 'some contents 8', 'act' => 'act1 act2 act3'),
array('id' => 8, 'date' => '06/09/2014', 'content' => 'some contents 8', 'act' => 'act1 act2 act3'));
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table border='1'>
<thead><th>Date</th><th>Content</th><th>Act</th></thead>
<?php
// use 'read ahead' so there is always a 'previous' record to compare against...
$iterContents = new \ArrayIterator($testData);
$curEntry = $iterContents->current();
while ($iterContents->valid()) { // there are entries to process
$curId = $curEntry['id'];
// buffer the group to find out how many entries it has...
$buffer = array();
$buffer[] = $curEntry;
$iterContents->next(); // next entry - may be same or different id...
$curEntry = $iterContents->current();
while ($iterContents->valid() && $curEntry['id'] == $curId) { // process the group...
$buffer[] = $curEntry; // store all records for a group in the buffer
$iterContents->next(); // next entry - may be same or different id...
$curEntry = $iterContents->current();
}
// display the current group in the buffer...
echo '<tr>';
echo '<td>', $buffer[0]['date'], '</td>';
$rowspan = count($buffer) > 1 ? ' rowspan="'. count($buffer) .'"' : '';
echo '<td', $rowspan, '>', $buffer[0]['content'], '</td>',
'<td', $rowspan, '>', $buffer[0]['act'], '</td>';
echo '</tr>';
for($i = 1; $i < count($buffer); $i++) {
echo '<tr><td>', $buffer[$i]['date'], '</td>';
echo '</tr>';
}
} ?>
</table>
</body>
</html>