如何使用PHP解析HTML文档中“mod”(.mod
)类的内容。
如果可以使用DOMDocument,请告诉我如何使用DOMDocument。
我目前正在使用以下内容获取<title>
代码(<title>
和</title>
)之间的内容
$this->document = new DOMDocument();
$title = $this->document->getElementsByTagName('title')->item(0)->nodeValue;
但是页面上有不同元素类型的其他元素共享类“mod”(。mod),如何获取这些元素的内容?
答案 0 :(得分:0)
您可以使用xpath
$path = new DOMXPath($this->document);
$nodes = $path->query("//*[contains(concat(' ', normalize-space(@class), ' '), ' mod ')]");