6

我需要将一些任意 HTML 加载到现有DOMDocument树中。以前的答案建议使用DOMDocumentFragment及其appendXML方法来处理这个问题。

正如@Owlvark在评论中指出的那样,xml 不是 html,因此这不是一个好的解决方案。

我遇到的主要问题是,像这样的实体&ndash会导致错误,因为该appendXML方法需要格式良好的 XML。

我们可以定义实体,但这并不能解决并非所有 html 都是有效 xml 的问题。

将 HTML 导入DOMDocument树的好解决方案是什么?

4

1 回答 1

7

我想出的解决方案是DomDocument::loadHtml按照@FrankFarmer 的建议使用,然后获取解析的节点并将它们导入到我当前的文档中。我的实现看起来像这样

/**
* Parses HTML into DOMElements
* @param string $html the raw html to transform
* @param \DOMDocument $doc the document to import the nodes into
* @return array an array of DOMElements on success or an empty array on failure
*/
protected function htmlToDOM($html, $doc) {
     $html = '<div id="html-to-dom-input-wrapper">' . $html . '</div>';
     $hdoc = DOMDocument::loadHTML($html);
     $child_array = array();
     try {
         $children = $hdoc->getElementById('html-to-dom-input-wrapper')->childNodes;
         foreach($children as $child) {
             $child = $doc->importNode($child, true);
             array_push($child_array, $child);
         }
     } catch (Exception $ex) {
         error_log($ex->getMessage(), 0);
     }
     return $child_array;
 }
于 2012-09-11T20:49:34.730 回答