使用domXpath获取父元素的当前ID

时间:2019-04-15 09:29:57

标签: php curl domxpath

我正在努力获得百度域名的排名。

我想做的是在域出现时获取结果的位置,我设法获取域名,我的问题是位置。

当域出现在结果上时,我需要获取id的{​​{1}}(这是位置)。希望你能帮助我。

谢谢。

result c-container

1 个答案:

答案 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