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

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

贊助商鏈接:

主站蜘蛛池模板: 隆化县| 招远市| 大同市| 东光县| 元氏县| 泽普县| 广饶县| 新竹市| 监利县| 南宁市| 昭觉县| 海伦市| 牡丹江市| 康乐县| 洪洞县| 夏邑县| 贞丰县| 合阳县| 卢氏县| 莎车县| 嫩江县| 岳阳市| 托里县| 南漳县| 苍山县| 社会| 泽普县| 廊坊市| 鹰潭市| 忻城县| 同江市| 西吉县| 永吉县| 肥乡县| 新源县| 从化市| 基隆市| 东明县| 南雄市| 韩城市| 土默特左旗|