<?php

$html = <<<END
<tbody>
    <tr>
       <td>cell</td>
       <td>cell</td>
    </tr> 
</tbody>
<tbody>
    <tr>
       <td>cell</td>
       <td>cell</td>
    </tr> 
</tbody>
END;

$dom = new DomDocument();
$dom->loadHTML($html);

$tbodies = $dom->getElementsByTagName('tbody');
foreach ($tbodies as $tbody) {
    $table = $dom->createElement('table');
    $tbody->parentNode->replaceChild($table, $tbody);
    $table->appendChild($tbody);
}

echo $dom->saveHtml();