📜  PHP | DOMImplementation __construct()函数

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

PHP | DOMImplementation __construct()函数

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

句法:

DOMImplementation::__construct( void )

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

下面的例子说明了PHP中的DOMImplementation::__construct()函数

示例 1:

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:

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