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


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


DOMDocument::load()函数是PHP中的内置函数,用于从文件加载XML文档。

用法:

mixed DOMDocument::load( string $filename, int $options = 0 )

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


  • $filename:此参数保存XML文档的路径。
  • $options:此参数保存libxml选项常量的按位或。

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

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

gfg.xml

<user>  
    <username>Geeks123</username>  
    <name>GeeksforGeeks</name>   
    <address>   
        <phone>+91-XXXXXXXXXX</phone> 
        <email>abc@geeksforgeeks.org</email> 
    </address>  
</user> 

程序:

<?php 
  
// Create a new DOMDocument 
$doc = new DOMDocument(); 
  
// Load the XML file to the document 
$doc->load('gfg.xml'); 
  
// Create a XML document and display it 
echo $doc->saveXML(); 
  
?>

输出:

<user> 
    <username>Geeks123</username> 
    <name>GeeksforGeeks</name>  
    <address>  
        <phone>+91-XXXXXXXXXX</phone>
        <email>abc@geeksforgeeks.org</email>
    </address> 
</user>

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



相关用法


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