如何打印元素的屬性?PHP DomDocument:如何打印元素的屬性?
例如:
$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 ?
}
不在乎爲什麼SimpleHtmlDom比DOM更「適合」處理HTML? DOM處理HTML罰款。 – Gordon 2010-07-10 17:56:09