0

任务 - 使用 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>

谢谢

4

2 回答 2

0

Have you tried:

// Dumps the internal DOM tree back into string 
$str = $content->save();

Reference: http://simplehtmldom.sourceforge.net/manual.htm

于 2013-06-07T17:35:47.023 回答
0

这工作正常:

// Sample HTML string
$html_str = '<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>';

// Create new DOM object
$dom = new DOMDocument();

// $html_str is HTML (can load from URL, if your host allows)
$dom->loadHTML($html_str);

// Get DIV id="content"
$element = $dom->getElementById('content');

// use save XML as input is XHTML.
echo $dom->saveXML($element);

// cleanup to prevent memory leak
$dom->clear(); 
unset($dom);

如果在另一个模板中使用,您必须添加正确的字符集才能正确显示字符

于 2013-06-09T15:39:58.853 回答