任务 - 使用 ID 抓取 DIV 标记内的内容,然后返回 XHTML。我正在使用“PHP 简单 HTML DOM 解析器”
示例简化代码:
<html><head></head>
<body>
<h1>Head</h1>
<div class="page">
<div id="content">
<h2>Section head</h2>
<p>Text</p>
</div>
<div id="footer">Footer text</div>
</div>
</body>
</html>
我可以通过以下方式获得内容:
$content = $html->find('#content');
$content 现在是一个 simpleDOM 对象,一个数组(已更正)。
如何将其转换回 XHTML,所以我只有:
<div id="content">
<h2>Section head</h2>
<p>Text</p>
</div>
谢谢