📜  PHP | DOMDocument saveHTML()函数

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

PHP | DOMDocument saveHTML()函数

DOMDocument::saveHTML()函数是PHP中的一个内置函数,用于从 DOM 表示创建 HTML 文档。从头开始构建 dom 文档后使用此函数。

句法:

string DOMDocument::saveHTML( DOMNode $node = NULL )

参数:此函数接受单个参数$node ,该参数是可选的,用于输出文档的子集。

返回值:此函数在成功时返回 HTML 文档,在失败时返回 FALSE。

下面的程序说明了PHP中的 DOMDocument::saveHTML()函数:

程序:

createElement('html');
  
// Append the element to the document as root element
$root = $domDocument->appendChild($root);
  
// Create a head element
$head = $domDocument->createElement('head');
  
// Append the element to the document
// as child element
$head = $root->appendChild($head);
  
// Create a title element
$title = $domDocument->createElement('title');
  
// Append the element to the document
// as child element
$title = $head->appendChild($title);
  
// Create a text node
$text = $domDocument->createTextNode(
        'DOMDocument::saveHTML() function');
          
// Add the text node the the title element
$text = $title->appendChild($text);
  
// Create a body element
$body = $domDocument->createElement('body');
  
// Append the element to the document
// as child element
$body = $root->appendChild($body);
  
// Create a heading element
$h1 = $domDocument->createElement('h1');
  
// Append the element to the document
$h1 = $body->appendChild($h1);
  
// Create a text node
$text = $domDocument->createTextNode('GeeksforGeeks');
  
// Add the text node to the heading element
$text = $h1->appendChild($text);
  
// Create a heading element
$h2 = $domDocument->createElement('h2');
  
// Append the element to the document
$h2 = $body->appendChild($h2);
  
// Create a text node
$text = $domDocument->createTextNode(
            'DOMDocument::saveHTML() function');
              
// Add the text node to the heading element
$text = $h2->appendChild($text);
  
// Use saveHTML() function to create
// an HTML document
echo $domDocument->saveHTML();
  
?>

输出:



    DOMDocument::saveHTML() function


    

GeeksforGeeks

DOMDocument::saveHTML() function

参考: https://www. PHP.net/manual/en/domdocument.savehtml。 PHP