當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。