DOMComment::__construct

(PHP 5, PHP 7, PHP 8)

DOMComment::__construct 创建新的 DOMComment 对象

描述

public DOMComment::__construct(string $data = "")

创建一个新的 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> */

?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top