📜  PHP | DOMImplementation createDocument()函数

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

PHP | DOMImplementation createDocument()函数

DOMImplementation::createDocument()函数是PHP中的一个内置函数,用于使用其文档元素创建指定类型的 DOMDocument 对象。

句法:

DOMDocument DOMImplementation::createDocument( string $namespaceURI = NULL, 
string $qualifiedName = NULL, DOMDocumentType $doctype = NULL )

参数:此函数接受三个参数,如上所述,如下所述:

  • $namespaceURI (可选):它指定要创建的文档元素的命名空间 URI。
  • $qualifiedName(可选):它指定要创建的文档元素的限定名称。
  • $doctype (可选):它指定要创建的文档的类型或 NULL。

返回值:此函数在成功时返回 DOMDocument 对象。

例外:如果 doctype 已经用于不同的文档或从不同的实现或DOM_NAMESPACE_ERR创建,如果命名空间存在错误,则此函数抛出DOM_WRONG_DOCUMENT_ERR ,由$namespaceURI$qualifiedName确定。

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

示例 1:

createDocument(null, 'html');
   
// Get the document element
$html = $document->documentElement;
   
// Create a HTML element
$head = $document->createElement('html');
  
// Create a strong element
$title = $document->createElement('strong');
$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();
?>

输出:

示例 2:

createDocument(null, 'html');
   
// Get the document element
$html = $document->documentElement;
   
// Create a HTML element
$head = $document->createElement('html');
  
// Create a paragraph element
$p = $document->createElement('p');
  
// Create a text node
$text = $document->createTextNode('GeeksforGeeks');
   
// Append the children
$p->appendChild($text);
  
// Set the CSS using attribute 
$p->setAttribute('style', 'color:blue;font-size:100px');
  
// Append paragraph to the head of document
$head->appendChild($p);
  
// Append head to the html
$html->appendChild($head);
   
// Render the XML
echo $document->saveXML();
?>

输出:

参考: https://www. PHP.net/manual/en/domimplementation.createdocument。 PHP