XMLReader::read()函数是PHP中的内置函数,用于移至文档中的下一个节点。因此,此功能用于遍历XML文档。
用法:
bool XMLReader::read( void )
参数:此函数不接受任何参数。
返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。
下面给出的程序说明了PHP中的XMLReader::read()函数:
程序1:在此程序中,遍历文件后将获得元素的值data.xml
文件名:data.xml
GeeksforGeeks
文档名称: index.php
// Create a new XMLReader instance
$XMLReader = new XMLReader();
// Open the XML file
$XMLReader->open('data.xml');
// Iterate through the XML nodes to
// reach the h1 element's text
// (Only four times)
$XMLReader->read();
$XMLReader->read();
$XMLReader->read();
$XMLReader->read();
// Print the value of element
echo "The text inside is:"
. "$XMLReader->value
";
?>
输出:
GeeksforGeeks
程序2:在此程序中,遍历元素后将获得它的名称。
文档名称: data.xml
GeeksforGeeks
文档名称: index.php
// Create a new XMLReader instance
$XMLReader = new XMLReader();
// Open the XML file
$XMLReader->open('data.xml');
// Iterate through the XML nodes
// to reach the h1 element
// (only three times)
$XMLReader->read();
$XMLReader->read();
$XMLReader->read();
// Print name of element
echo "The name of element is:"
. "$XMLReader->name
";
?>
输出:
The name of element is:h1