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