使用DomElement与DomText时,为什么实体的处理存在差异?
示例代码:
$text = 'this&that or this& that';
$document = new \DOMDocument;
$p1 = $document->createElement('p', $text);
// versus
$p2 = $document->createElement('p');
$p2->appendChild($document->createTextNode($text));
var_dump($p1->nodeValue); // thisthat
var_dump($p2->nodeValue); // this&that or this&that
答案 0 :(得分:1)
区别在于createElement
不接受(重音符号)和标记中的非法字符,如果是这样,将忽略这种字符