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


PHP DOMDocument loadXML()用法及代码示例


DOMDocument::loadXML()函数是PHP中的内置函数,用于从字符串中加载XML文件。

用法:

mixed DOMDocument::loadXML( string $source, int $options = 0 )

参数:该函数接受上述和以下描述的两个参数:


  • $source:此参数保存包含XML文档的字符串。
  • $options:此参数保存libxml选项常量的按位或。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。如果以静态方式调用该函数,则返回DOMDocument;如果失败,则返回FALSE。

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

示例1:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument(); 
   
// Load the XML file 
$doc->loadXML( 
"<user>  
    <username>Geeks123</username>  
    <name>GeeksforGeeks</name>   
    <address>   
        <phone>+91-XXXXXXXXXX</phone> 
        <email>abc@geeksforgeeks.org</email> 
    </address>  
</user>"); 
   
// Create XML file and display it 
echo $doc->saveHTML(); 
   
?>
输出:
<user> 
    <username>Geeks123</username> 
    <name>GeeksforGeeks</name>  
    <address>  
        <phone>+91-XXXXXXXXXX</phone>
        <email>abc@geeksforgeeks.org</email>
    </address> 
</user>

示例2:

<?php 
  
// Create new DOMDocument 
$doc = new DOMDocument(); 
    
// Create a comment document 
$comm1 = $doc->createComment('Starting of XML document'); 
   
// Append element to the document 
$doc->appendChild($comm1); 
   
// Create XML file and display it 
echo $doc->saveHTML(); 
   
// Load the XML file 
$doc->loadXML( 
"<user>  
    <username>Geeks123</username>  
    <name>GeeksforGeeks</name>   
    <address>   
        <phone>+91-XXXXXXXXXX</phone> 
        <email>abc@geeksforgeeks.org</email> 
    </address>  
</user>"); 
   
// Create comment element 
$comm2 = $doc->createComment('Ending of XML document'); 
   
// Append element to the document 
$doc->appendChild($comm2); 
   
// Create XML element and display it 
echo $doc->saveHTML(); 
   
?>
输出:
<!--Starting of XML document-->
<user> 
    <username>Geeks123</username> 
    <name>GeeksforGeeks</name>  
    <address>  
        <phone>+91-XXXXXXXXXX</phone>
        <email>abc@geeksforgeeks.org</email>
    </address> 
</user><!--Ending of XML document-->

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



相关用法


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