PHP简单HTML DOM解析器 - 打印类名

时间:2013-03-04 18:58:59

标签: php class parsing dom

从一个网页解析一些数据我没什么问题。 我正在尝试获取某些div的类名。

示例:

< div class="stars b3"></div>

我想在b3数组中保存。 有可能这样做吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

见:

<?php // http://stackoverflow.com/questions/4835300/php-dom-to-get-tag-class-with-multiple-css-class-name

$html = <<< HTML
<td class="pos" >
    <a class="firstLink" href="Search/?List=200003000112097&sr=1" >
        Firs link value
    </a>

    <br />

    <a class="secondLink SecondClass" href="/Search/?KeyOpt=ALL" >
        Second Link Value
    </a>
</td
HTML;

$dom = new DOMDocument();
@$dom->loadHTML($html);
$dom->preserveWhiteSpace = false;
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate(
    "/html/body//a[@class='secondLink SecondClass']"
);
echo $hrefs->item(0)->getAttribute('class');

参考。 http://codepad.org/VZVUXgrT