PHP nodeValue剥离html标签 – innerHTML替代?

我正在使用以下脚本进行轻量级DOM编辑器.但是,我的for循环中的nodeValue将我的html标签转换为纯文本.什么是nodeValue的
PHP替代品,可以维护我的innerHTML?

$page = $_POST['page'];
$json = $_POST['json'];

$doc = new DOMDocument();
$doc = DOMDocument::loadHTMLFile($page);

$xpath = new DOMXPath($doc);
$entries = $xpath->query('//*[@class="editable"]');
$edits = json_decode($json, true);
$num_edits = count($edits);

for($i=0; $i<$num_edits; $i++) 
{
    $entries->item($i)->nodeValue = $edits[$i]; // nodeValue strips html tags
}

$doc->saveHTMLFile($page);

最佳答案 由于$edits [$i]是一个字符串,因此您需要将其解析为DOM结构并用新结构替换原始内容.

更新

下面的代码片段在使用非XML兼容的HTML时做了不可思议的工作. (例如HTML 4/5)

for($i=0; $i<$num_edits; $i++)
{
    $f = new DOMDocument();
    $edit = mb_convert_encoding($edits[$i], 'HTML-ENTITIES', "UTF-8"); 
    $f->loadHTML($edit);
    $node = $f->documentElement->firstChild;
    $entries->item($i)->nodeValue = "";
    foreach($node->childNodes as $child) {
        $entries->item($i)->appendChild($doc->importNode($child, true));
    }
}
点赞