The XML file:
<urlset>
<url>
<loc>http://example.com/.../</loc>
<lastmod>0000-00-00</lastmod>
<priority>0</priority>
</url>
<url>
<loc>http://example.com/...</loc>
<lastmod>0000-00-00</lastmod>
<priority>0</priority>
</url>
</urlset>
How to get a list of links to the xml? (google translate)
foreach ($html->find('?????') as $element) {
echo $element->src;
}