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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。