(PHP 5, PHP 7, PHP 8)
DOMComment::__construct — 创建新的 DOMComment 对象
创建一个新的 DOMComment 对象。此对象是只读的。它可以附加到文档,但在此节点与文档关联之前,无法附加其他节点。要创建可写节点,请使用 DOMDocument::createComment。
data
注释的值。
示例 #1 创建新的 DOMComment
<?php
$dom = new DOMDocument('1.0', 'iso-8859-1');
$element = $dom->appendChild(new DOMElement('root'));
$comment = $element->appendChild(new DOMComment('root comment'));
echo $dom->saveXML(); /* <?xml version="1.0" encoding="iso-8859-1"?><root><!--root comment--></root> */
?>