📜  PHP | DOMComment __construct()函数

📅  最后修改于: 2022-05-13 01:56:48.208000             🧑  作者: Mango

PHP | DOMComment __construct()函数

DOMComment::__construct()函数是PHP中的一个内置函数,它创建一个新的 DOMComment 对象。此对象是只读的,可以附加到文档中

句法:

public DOMComment::__construct( string $value)

参数:此函数接受一个包含注释的参数$value

下面给出的程序说明了PHP中的DOMComment::__construct()函数

程序1(简单评论):

appendChild(new DOMElement('h1'));
  
// Create a DOMComment
$comment = $element->appendChild(
        new DOMComment('This line is a comment'));
  
echo $dom->saveXML();
?>

输出:


程序 2(使用带有元素的注释):

appendChild(new DOMElement('h1'));
  
// Create a DOMCdataSection 
$comment = $element->appendChild(new DOMComment(
        'This line is a comment about content'));
  
// Create a div element
$element = $element->appendChild(new DOMElement(
          'div', 'This is the actual content'));
  
echo $dom->saveXML();
?>

输出:


This is the actual content

参考: https://www. PHP.net/manual/en/domcomment.construct。 PHP