當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。