XMLReader::close()函数是PHP中的一个内置函数,用于关闭当前正在解析的XMLReader对象的输入。
用法:
bool XMLReader::close( void )
参数:此函数不接受任何参数。
返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。
以下示例说明了PHP中的XMLReader::close()函数:
程序1:
- data.xml
<?xml version="1.0" encoding="utf-8"?> <root> <p> Hello world </p> </root>
- index.php
<?php // Create a new XMLReader instance $XMLReader = new XMLReader(); // Open the XML file $XMLReader->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
程序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(); // Open 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; // Close the XML Reader after reading XML $XMLReader->close(); ?>
- 输出:
GeeksforGeeks
参考: https://www.php.net/manual/en/xmlreader.close.php
相关用法
- PHP XMLReader XML()用法及代码示例
- PHP XMLReader open()用法及代码示例
- PHP XMLReader getParserProperty()用法及代码示例
- PHP XMLReader getAttributeNs()用法及代码示例
- PHP XMLReader readInnerXml()用法及代码示例
- PHP XMLReader setSchema()用法及代码示例
- PHP XMLReader setRelaxNGSchemaSource()用法及代码示例
- PHP XMLReader setRelaxNGSchema()用法及代码示例
- PHP XMLReader setParserProperty()用法及代码示例
- PHP XMLReader readString()用法及代码示例
- PHP XMLReader readOuterXml()用法及代码示例
- PHP XMLReader moveToNextAttribute()用法及代码示例
- PHP XMLReader moveToFirstAttribute()用法及代码示例
- PHP Spreadsheet_Excel_Writer Close()用法及代码示例
- HTML DOM close()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | XMLReader close() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。