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