我使用简单的HTML DOM刮网站。 我所遇到的问题是,有定位任何特定的元素之外的文本。 这似乎是内部的唯一元件是<div id="content">
<div id="content">
<div class="image-wrap"></div>
<div class="gallery-container"></div>
<h3 class="name">Here is the Heading</h3>
All the text I want is located here !!!
<p> </p>
<div class="snapshot"></div>
</div>
我想在网站站长搞砸和文本实际上应该是内部<p>
标签。
我用下面这段代码试过,但它只是不会检索文本:
$t = $scrape->find("div#content text",0);
if ($t != null){
$text = trim($t->plaintext);
}
我还是一个新手,还在学习。 谁能帮助呢?