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
相關用法
- PHP DOMDocument createAttribute()用法及代碼示例
- PHP DOMDocument __construct()用法及代碼示例
- PHP DOMDocument createComment()用法及代碼示例
- PHP DOMDocument normalizeDocument()用法及代碼示例
- PHP DOMDocument loadXML()用法及代碼示例
- PHP DOMDocument createAttributeNS()用法及代碼示例
- PHP DOMDocument createElementNS()用法及代碼示例
- PHP DOMDocument createCDATASection()用法及代碼示例
- PHP DOMDocument load()用法及代碼示例
- PHP DOMDocument loadHTML()用法及代碼示例
- PHP DOMDocument createElement()用法及代碼示例
- PHP DOMDocument save()用法及代碼示例
- PHP DOMDocument createEntityReference()用法及代碼示例
- PHP DOMDocument saveXML()用法及代碼示例
- PHP DOMDocument importNode()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | DOMDocument loadHTMLFile() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。