📜  PHP | DOMDocument loadHTMLFile()函数

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

PHP | DOMDocument loadHTMLFile()函数

DOMDocument::loadHTMLFile()函数是PHP中的一个内置函数,用于从文件加载 HTML。

句法:

bool DOMDocument::loadHTMLFile( string $filename, int $options = 0 )

参数:该函数接受上面提到的两个参数,如下所述:

  • $filename:此参数保存 HTML 文件的路径。
  • $options:此参数用于指定PHP 5.4.0 和 Libxml 2.6.0 中的附加 Libxml 参数。

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。如果静态调用此函数或失败时返回 FALSE,则此函数返回 DOMDocument。

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

gfg.html



    PHP function


    

Welcome to GeeksforGeeks

    

PHP function

    
A computer science portal
    

方案一:

loadHTMLFile("gfg.html");
  
// Create an HTML document and display it
echo $doc->saveHTML();
  
?>

输出:



    PHP function


    

Welcome to GeeksforGeeks

PHP function

A computer science portal

方案二:

createComment('Starting of HTML document file');
  
// Append element to the document
$doc->appendChild($comm1);
  
// Create an HTML document and display it
echo $doc->saveHTML();
  
// Load the HTML file
$doc->loadHTMLFile('gfg.html');
  
// Create an element
$comm2 = $doc->createComment('Ending of HTML document file');
  
// Append element to the document
$doc->appendChild($comm2);
  
// Create an HTML document and display it
echo $doc->saveHTML();
  
?>

输出:




    PHP function


    

Welcome to GeeksforGeeks

PHP function

A computer science portal

参考: https://www. PHP.net/manual/en/domdocument.loadhtml 文件。 PHP