php xmlreader 实例,PHP XMLReader read()用法及代码示例

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>