1

如何打印元素的属性?

例子:

$doc = new DOMDocument();
@$doc->loadHTML($page);
$xpath = new DOMXPath($doc);
$arts= $xpath->query("/td");

foreach ($arts as $art) {
   // here i wanna print the attribute class of the td element, how do i do so ?
}
4

2 回答 2

1

使用DOMElement::getAttribute

$art->getAttribute('class');

另外,simpleHTMLDOM更适合处理 html:

$html = str_get_html($page);
foreach($html->find('td') as $element) 
   echo $element->class.'<br>';
}
于 2010-07-10T17:08:24.307 回答
1

DOMXPathquery函数返回 a DOMNodeList(我很确定)不能在foreach($ARRAY)循环中使用 [编辑:它可以]您必须实现修改后的for循环才能读取DOMNode列表类中的元素: [编辑:不需要;见下文]

foreach ($arts as $art) {
     # code-hardiness checking
     if ($art && $art->hasAttributes()) {
         # (note: chaining will only work in PHP 5+)
         $class = $art->attributes->getNamedItem('class');
         print($class . "\n");
     }
}
于 2010-07-10T17:16:01.000 回答