如何使用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
有什么想法吗?
答案 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