I have a script that is checking for backlinks in php. It uses curl to go to the page and pull the contents. I then put the html ($htmlContent) into a DOMXPath and query it to retrieve all tags.
Heres my code:
$dom = new DOMDocument();
@$dom->loadHTML($htmlContent);
$xpath = new DOMXPath($dom);
$linkNodes = $xpath->query("//a[@href[contains(., '$this->baseDomain')]]");
// Loop through all links found
foreach ($linkNodes as $a) {
$linkHref = trim($a->getAttribute('href'));
if(strlen(trim($a->nodeValue)) > 0) {
$linkText = strip_tags(trim($a->nodeValue));
} else {
$linkText = "*Image";
// Right here I want to now get the image alt text,
// or if the alt is not set then get the title of the image.
}
}
I know that if my link node value is blank its because it is an image. However I now need to get the alt text, or the title tag of the image if they are set.
My Question: How would I query the $a->nodeValue to get the actual image tag or the attributes of the image tag?
Any assistance would be much appreciated.