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


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


DOMImplementation::__construct()函数是PHP中的内置函数,用于创建新的DOMImplementation对象。

用法:

 DOMImplementation::__construct( void )

参数:此函数不接受任何参数。


以下示例说明了PHP中的DOMImplementation::__construct()函数:

范例1:

<?php 
  
// Create a DOMImplementation instance 
$documentImplementation = new DOMImplementation(); 
  
// Create a document 
$document = $documentImplementation->createDocument(null, 'html'); 
  
// Get the document element 
$html = $document->documentElement; 
  
// Create few element 
$heading = $document->createElement('h1'); 
$text = $document->createTextNode('GeeksforGeeks'); 
  
// Append the children 
$heading->appendChild($text); 
$html->appendChild($heading); 
  
// Render the XML 
echo $document->saveXML(); 
?>

输出:

范例2:

<?php 
// Create a DOMImplementation instance 
$documentImplementation = new DOMImplementation(); 
  
// Create a document 
$document = $documentImplementation->createDocument(null, 'html'); 
  
// Get the document element 
$html = $document->documentElement; 
  
// Create few element 
$head = $document->createElement('head'); 
$title = $document->createElement('title'); 
$text = $document->createTextNode('GeeksforGeeks'); 
$body = $document->createElement('body'); 
  
// Append the children 
$title->appendChild($text); 
$head->appendChild($title); 
$html->appendChild($head); 
$html->appendChild($body); 
  
// Render the XML 
echo $document->saveXML(); 
?>

输出:

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



相关用法


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