4

如何使用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

任何想法?

4

1 回答 1

7

How to access the HTML element's attributes的Magic Attributes选项卡下,您将找到如何访问对象的属性。还有一处房产。innertextplaintext

$es = $html->find('div[class="post"]', 0);
echo $es->innertext; // Some Content 
于 2012-12-06T17:46:13.160 回答