当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMComment __construct()用法及代码示例


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

用法:

public DOMComment::__construct( string $value)

参数:该函数接受一个包含注释的单个参数$value。


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

计划1(简单评论):

<?php 
  
// Create a new DOM Document 
$dom = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create a h1 element 
$element = $dom->appendChild(new DOMElement('h1')); 
  
// Create a DOMComment 
$comment = $element->appendChild( 
        new DOMComment('This line is a comment')); 
  
echo $dom->saveXML(); 
?>

输出:

<?xml version="1.0" encoding="iso-8859-1"?>
<h1><!--This line is a comment--></h1>

计划2(在元素中使用注释):

<?php 
  
// Create a new DOM Document 
$dom = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create a h1 element 
$element = $dom->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(); 
?>

输出:

<?xml version="1.0" encoding="iso-8859-1"?>
<h1><!--This line is a comment about content-->
<div>This is the actual content</div></h1>

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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMComment __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。