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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。