コード例 #1
0
ファイル: Html.php プロジェクト: fluentdom/fluentdom
 private function loadFragmentIntoDom(\DOMDocument $document, $source, $loadOptions)
 {
     $htmlDom = new Document();
     $htmlDom->loadHTML('<html-fragment>' . $source . '</html-fragment>', $loadOptions);
     $nodes = $htmlDom->evaluate('//html-fragment[1]/node()');
     foreach ($nodes as $node) {
         if ($importedNode = $document->importNode($node, TRUE)) {
             $document->appendChild($importedNode);
         }
     }
 }