Mysql
 sql >> Database >  >> RDS >> Mysql

Come unire la riga della tabella con l'array PHP?

Uso la tecnica "read ahead" per elaborare i loop nidificati. Significa che i loop "foreach" non possono essere utilizzati poiché il record successivo deve essere letto non appena quello corrente è stato elaborato. Fondamentalmente, l'ultima azione che fai nel ciclo è leggere il record successivo mentre lo stai configurando per l'iterazione successiva. Nota, non si verifica mai quando stampare un record in quanto ciò è deciso dalla struttura dei gruppi. I cicli di codice sono gli stessi della struttura dei gruppi nei dati

Un "gruppo" è tutti i record con lo stesso id .

Presumo che il "contenuto" e "atto" siano identici per ogni voce del gruppo.

Modificato per aggiungere gli attributi "rowspan" ai tag "td" appropriati. Sospetto che CSS possa essere più facile a questo punto.

Il problema è che il gruppo non può essere visualizzato finché non si conosce il numero di voci che contiene.

Quindi, 'buffer' tutti i record appartenenti a un gruppo in un array. alla fine del gruppo, viene visualizzato con gli attributi 'rowspan' appropriati nell'html.

È testato su PHP 5.3.18. Include i dati del test.

<?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>