我有这个 HTML:
<div class="body">
<p>Some text 1</p>
<h2>Header 2</h2>
<p>Actual content</p>
</div>
我想从中得到一切,除了<h2>
它看起来像这样:
<p>Some text 1</p>
<p>Actual content</p>
试图实现这一目标:
$crawler = new Crawler( $html );
$body = $crawler->filter( 'div.body' );
$body->rewind();
$body = $body->current();
$h2 = $crawler->filter('h2');
$h2->rewind();
$h2 = $h2->current();
$body->removeChild($h2);
但我得到:
[DOMException] 未找到错误
我错过了什么?