使用PHP Simple HTML DOM Parser从Div类中获取内容

时间:2012-12-06 17:34:45

标签: parsing dom simple-html-dom

如何使用PHP Simple HTML DOM Parser获取Div类中的内容。
这里我想从div类中获取内容,如:

<div class="post" imposition="usermanual">Some Content </div>

那么,使用此div类post获取内容的方法是什么? 我试过这段代码但不行:

$es = $html->find('.post');
$es = $html->find('div.post'); // also try this
$es = $html->find('div[class="post"]'); // also try this

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

How to access the HTML element's attributes Magic Attributes 标签下,您将找到如何访问对象的innertext属性。还有一个plaintext属性。

$es = $html->find('div[class="post"]', 0);
echo $es->innertext; // Some Content