<?php

$markup = <<<EOL
<html>
  <head><title>The test</title></head>
  <body>
    <table>
      <tr>
      	<td><a>Foo</a></td>
      	<td><a>Bar</a></td>
      </tr>
      <tr>
      	<td colspan="2"><a>Baz</a></td>
      </tr>
    </table>
    <table>
      <tr><td><a>Test</a></td></tr>
    </table>
  </body>
</html>
EOL;

$dom = new DOMDocument('1.0', 'UTF-8');
$dom->loadHTML($markup);

$xpath = new DOMXpath($dom);
$links = $xpath->query('*/table//a');

foreach ($links as $link) {
	echo($link->ownerDocument->saveHTML($link) . "\n");
}