成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

PHP解析XML數(shù)據(jù)的源代碼

2010-08-28 10:56:04來源:西部e網(wǎng)作者:

PHP解析XML數(shù)據(jù)

//xml string
$xml_string="<?xml version='1.0'?>
<users>
<user id='398'>
<name>Foo</name>
<email>foo@bar.com</name>
</user>
<user id='867'>
<name>Foobar</name>
<email>foobar@foo.com</name>
</user>
</users>";

//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, '<br />';
}

關(guān)鍵詞:PHP

贊助商鏈接:

主站蜘蛛池模板: 来安县| 日喀则市| 屏山县| 三都| 丽江市| 宣城市| 县级市| 鸡泽县| 湘乡市| 伊金霍洛旗| 巨野县| 独山县| 五莲县| 莱芜市| 峡江县| 理塘县| 夹江县| 湖口县| 康乐县| 哈密市| 邯郸县| 无极县| 公安县| 亚东县| 吉林省| 山东| 称多县| 衢州市| 镇宁| 镇巴县| 阿城市| 连城县| 尉氏县| 莲花县| 英吉沙县| 汕尾市| 宣威市| 监利县| 莱州市| 宾川县| 班玛县|