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


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


XMLReader::open()函數是PHP中的內置函數,用於設置包含要解析的XML文檔的URI。簡而言之,此函數用於打開需要處理的XML文件。

用法:

bool XMLReader::open( string $URI, string $encoding, int $options )

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



  • $URI:它指定指向文檔的URI。
  • $encoding (Optional):它指定文檔編碼或NULL。
  • $options (Optional):它指定位掩碼。

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

異常:如果以靜態方式調用,此函數將引發E_STRICT錯誤。

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

範例1:

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <body> 
        <h1 attrib="value"> Hello </h1> 
    </body>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Load the XML file 
    $XMLReader->open('data.xml'); 
      
    // Iterate through the XML 
    while ($XMLReader->read()) { 
        if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
      
            // Get the value of first attribute 
            $value = $XMLReader->getAttributeNo(0); 
      
            // Output the value to browser 
            echo $value . "<br>"; 
        } 
    } 
    ?>
  • 輸出:
    value

程序2:

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <body> 
        <h1> GeeksforGeeks </h1> 
    </body>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Load the XML file 
    $XMLReader->open('data.xml'); 
      
    // Move to the first node 
    $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.open.php




相關用法


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