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


PHP DOMDocument loadHTML()用法及代碼示例


DOMDocument::loadHTML()函數是PHP中的內置函數,用於從字符串加載HTML文件。

用法:

bool DOMDocument::loadHTML( string $source, int $options = 0 )

參數:該函數接受上述和以下描述的兩個參數:


  • $source:此參數保存HTML字符串。
  • $options:此參數用於在PHP 5.4.0和Libxml 2.6.0中指定其他Libxml參數。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。如果以靜態方式調用該函數,則返回DOMDocument;如果失敗,則返回FALSE。

錯誤/異常:如果將空字符串作為參數傳遞,則它將生成警告消息。也可以靜態調用此函數,但是它將發出E_STRICT錯誤。

以下示例程序旨在說明PHP中的DOMDocument::loadHTML()函數:

示例1:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument(); 
  
// Load the HTML file 
$doc->loadHTML( 
"<html> 
<head> 
    <title> 
        DOMDocument::loadHTML() function
    </title> 
</head> 
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOMDocument::loadHTML() function</h2> 
</body>     
</html>"); 
  
// Creates an HTML document and display it 
echo $doc->saveHTML(); 
  
?>
輸出:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
        "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
    <title>
        DOMDocument::loadHTML() function
    </title>
</head>
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOMDocument::loadHTML() function</h2>
</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); 
  
// Creates an HTML document and display it 
echo $doc->saveHTML(); 
  
// Load the HTML element to the document 
$doc->loadHTML( 
"<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>"); 
  
// Create an element 
$comm2 = $doc->createComment('Ending of HTML document file'); 
  
// Append element to the document 
$doc->appendChild($comm2); 
  
// Creates an HTML document and display it 
echo $doc->saveHTML(); 
  
?>
輸出:
<!--Starting of HTML document file-->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" 
        "http://www.w3.org/TR/REC-html40/loose.dtd">
<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.loadhtml.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | DOMDocument loadHTML() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。