當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP XMLReader XML()用法及代碼示例


XMLReader::XML()函數是PHP中的內置函數,用於設置包含要解析的XML的數據。 XML()函數的函數與打開函數的目的相同,但唯一的區別是前者將XML接受為字符串,而後者將其接受為單獨的.xml文件。

用法:

bool XMLReader::XML( string $source, 
string $encoding, int $options )

參數:此函數接受上述和以下所述的三個參數:



  • $source:它指定包含要解析的XML的字符串。
  • $encoding (Optional):它指定文檔編碼或NULL。
  • $options (Optional):它指定可選的位掩碼。

返回值:如果成功,此函數將返回TRUE,否則將返回FALSE。

異常:靜態調用此函數會引發E_STRICT錯誤。

以下示例說明了PHP中的XMLReader::XML()函數:

範例1:

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
$XML = "<?xml version=\"1.0\"?> 
<div> 
    <p> GeeksforGeeks </p> 
</div>"; 
  
// Open the XML file 
$XMLReader->XML($XML); 
  
// Iterate through the XML nodes 
while ($XMLReader->read()) { 
    if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
  
        echo "We are at " . $XMLReader->name . "<br>"; 
  
    } 
} 
?>

輸出:

We are at div
We are at p

範例2:

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
$XML = "<?xml version=\"1.0\"?> 
<div> 
    <p> GeeksforGeeks </p> 
</div>"; 
  
// Open the XML file 
$XMLReader->XML($XML); 
  
// Read the nodes 
$XMLReader->read(); 
  
// Read it as a string 
$string = $XMLReader->readString(); 
   
// Output the string to the browser 
echo $string; 
?>

輸出:

GeeksforGeeks

參考: https://www.php.net/manual/en/xmlreader.xml.php




相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | XMLReader XML() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。