loadHTML($html); $links = $dom->getElementsByTagName('a'); $url = 'https://bitbucket.org/alceawisteria/ostr/issues/'; $html = file_get_contents($url); $dom = new DOMDocument(); @$dom->loadHTML($html); $xpath = new DOMXPath($dom); $nodes = $xpath->query('//a[@class="execute"]'); foreach ($nodes as $node){ echo $link->nodeValue; echo " getAttribute('href'); echo ">"; echo $node-> getAttribute('href'); echo "", '
'; } ?>

demo: clixk