我能够使用 getElementByTagName 从 html 文件中解析标签。但我也想解析该html文件中存在的id和类名......
这是我尝试过的:-
$html = new DOMDocument();
$html->loadHTMLFile($url); //url is the url of the site
$data = $html->getElementById($identifier); //identifier is the id
$value = array();
foreach($data as $element)
{
$value[] = $element->nodeValue."<br />";
}
print_r($value);
但是当我使用 getElementById 时,我只是将输出作为数组()。我无法解析数据。你也能告诉我如何获取 id 和 classname 值吗?