当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。如果以静态方式调用该函数,则返回DOMDocument;如果失败,则返回FALSE。

以下示例程序旨在说明PHP中的DOMDocument::loadHTMLFile()函数:

gfg.html

<html> 
<head> 
    <title>PHP function</title> 
</head> 
<body> 
    <h1>Welcome to GeeksforGeeks</h1> 
    <h2>PHP function</h2> 
    <div>A computer science portal</div> 
</body>     
</html>

示例1:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument(); 
  
// Load the HTML file 
$doc->loadHTMLFile("gfg.html"); 
  
// Create an HTML document and display it 
echo $doc->saveHTML(); 
  
?>

输出:

<html>
<head>
    <title>PHP function</title>
</head>
<body>
    <h1>Welcome to GeeksforGeeks</h1>
    <h2>PHP function</h2>
    <div>A computer science portal</div>
</body>    
</html>

示例2:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument(); 
   
// Create an element 
$comm1 = $doc->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(); 
  
?>

输出:

<!--Starting of HTML document file-->
<html>
<head>
    <title>PHP function</title>
</head>
<body>
    <h1>Welcome to GeeksforGeeks</h1>
    <h2>PHP function</h2>
    <div>A computer science portal</div>
</body>    
</html>
<!--Ending of HTML document file-->

参考: https://www.php.net/manual/en/domdocument.loadhtmlfile.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DOMDocument loadHTMLFile() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。