我正在努力获得百度域名的排名。
我想做的是在域出现时获取结果的位置,我设法获取域名,我的问题是位置。
当域出现在结果上时,我需要获取id
的{{1}}(这是位置)。希望你能帮助我。
谢谢。
result c-container
答案 0 :(得分:1)
从文档中
$item->parentNode->tagName
例子
if($item->parentNode->tagName == "h2") {
$href = $item->getAttribute("href");
$text = trim(preg_replace("/[\r\n]+/", " ", $item->nodeValue));
$links[] = [
'href' => $href,
'text' => $text
];
}
来源:https://www.the-art-of-web.com/php/html-xpath-query/#section_3