DOMDocument::createComment
DOMDocument::createComment
(PHP 5, PHP 7)
DOMDocument::createComment - 创建新的评论节点
描述
public DOMComment DOMDocument::createComment ( string $data )
这个函数创建一个DOMComment类的新实例。除非使用(例如)DOMNode :: appendChild()插入,否则该节点不会显示在文档中。
参数
data
评论的内容。
返回值
新的DOMComment或发生错误时返回FALSE
。