PHP XML数据解析代码

前端之家收集整理的这篇文章主要介绍了PHP XML数据解析代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="67797" class="copybut" id="copybut67797" onclick="doCopy('code67797')"> 代码如下:

<div class="codebody" id="code67797">
//xml string
$xml_string="<?xml version='1.0'?>


Foo
foo@bar.com


Foobar
foobar@foo.com

"; //load the xml string using simplexml
$xml = simplexml_load_string($xml_string); //loop through the each node of user
foreach ($xml->user as $user)
{
//access attribute
echo $user['id'],' ';
//subnodes are accessed by -> operator
echo $user->name,' ';
echo $user->email,'
';
}

这里是摘自编程之家之前发布的文章。更多的技巧可以参考。
收集的二十一个实用便利的PHP函数代码

原文链接:https://www.f2er.com/php/28524.html

猜你在找的PHP相关文章