0

我正在尝试使用 DOMdocument() 从网页中提取标题和描述,我成功地提取了这样的标题

$d=new DOMDocument();
$d->loadHTML($html);
$title=$d->getElementsByTagName("title")->item(0)->textContent;

我可以通过遍历所有内容meta tags并检查name="desctiption"属性来提取描述,但是循环会使过程变慢所以想知道是否可以使用php DOMdocument中的某些属性选择器来提取内容的直接方法?

4

2 回答 2

2

使用 php 的get_meta_tags()函数。

你可以这样做:

$d=new DOMDocument();
$d->loadHTML($html);
$title=$d->getElementsByTagName("title")->item(0)->textContent;
$meta = get_meta_tags($html);
$description = $meta["description"];
于 2012-07-19T12:09:00.787 回答
1

我认为这不能单独使用 DOMDocument 来完成,但可以与 DOMXPath 结合使用:

$html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dom - Xpath test</title>
<meta name="description" content="The first description meta tag" />
<meta name="keywords" content="none, no-keywords" />
<meta name="description" content="the second description tag" />
</head>
<body>
<p>This is the test HTML</p>
</body>
</html>
';

$dom = new DOMDocument();
$dom->loadHTML($html);
$domx = new DOMXPath($dom);
$desc = $domx->query("//meta[@name='description']");

$i = 0;
while ($item = $desc->item($i++)) {
    echo '<p>'.$item->getAttribute('content').'</p>';
}
于 2012-07-19T12:13:43.450 回答