📜  PHP | XMLReader close()函数

📅  最后修改于: 2022-05-13 01:56:37.825000             🧑  作者: Mango

PHP | XMLReader close()函数

XMLReader::close()函数是PHP中的一个内置函数,用于关闭当前正在解析的 XMLReader 对象的输入。

句法:

bool XMLReader::close( void )

参数:此函数不接受任何参数。

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

下面的示例说明了PHP中的XMLReader::close()函数

方案一:

  • 数据.xml
    
    
        

    Hello world

  • 指数。 PHP
    open('data.xml');
      
    // Close the XML Reader before reading XML
    $XMLReader->close();
      
    // Move to the first node
    $XMLReader->read();
      
    // Read it as a string
    $string = $XMLReader->readString();
      
    // Output the string to the browser
    echo $string;
    ?>
    
  • 输出:
    // Blank because we closed the input of the XMLReader before reading XML

方案二:

  • 数据.xml
    
    
        

    GeeksforGeeks

  • 指数。 PHP
    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;
      
    // Close the XML Reader after reading XML
    $XMLReader->close();
    ?>
    
  • 输出:
    GeeksforGeeks

参考: https://www. PHP.net/manual/en/xmlreader.close。 PHP