El código que me dijeron era
Código PHP:
if ($link start with ($patron)){
En la variable $patron se guarda la url con la que deben comenzar los links:
Código PHP:
$patron = "http://es.wikipedia.org";
Actualmente extraigo los links de una web de la siguiente manera:
Código PHP:
$dom = new DOMDocument();
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $hrefs->length; $i++) {
$href = $hrefs->item($i);
$url = $href->getAttribute('href');
}