关于PHP获取XML的问题

<?xmlversion="1.0"encoding="UTF-8"?><soapenv:Envelopexmlns:soapenv="http://schemas.xm... <?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<EchoOfSendSMS soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<ucNum xsi:type="xsd:string">07525143006</ucNum>
<cee xsi:type="xsd:string">15889505055</cee>
<msgid xsi:type="xsd:int">7878448</msgid>
<res xsi:type="xsd:int">1</res>
<recvt xsi:type="xsd:string">20100119105258</recvt>
</EchoOfSendSMS>
<EchoOfSendSMS soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<ucNum xsi:type="xsd:string">07525143007</ucNum>
<cee xsi:type="xsd:string">15889505052</cee>
<msgid xsi:type="xsd:int">7878449</msgid>
<res xsi:type="xsd:int">1</res>
<recvt xsi:type="xsd:string">20100119105256</recvt>
</EchoOfSendSMS>
</soapenv:Body>
</soapenv:Envelope>
这个是XML文件,我想分别获取里面的"EchoOfSendSMS"这个字段和ucNum,cee,msgid,res,recvt所对应的值
请问要怎么操作啊?
展开
 我来答
善良柠檬小伙
2011-01-20 · TA获得超过997个赞
知道答主
回答量:364
采纳率:0%
帮助的人:297万
展开全部
关于你这个问题,我还是建议你用xml读取
这个是不会出错的
当然也可以用正则,不过如果items之间的属性位置变化了,我写的这个正则就不好用了,以下是保证属性位置不变的情况的例子,你把想得到的值,用foreach 循环$matches就可以
$xmlstr = @file_get_contents('data_show.xml');
$re='/<variable_sysnew\s*name="([^"]*)"\s*value="([^"]*)"\s*web_html="([^"]*)"\s*title_name="([^"]*)"\s*timesvalue="([^"]*)"/i';
$re_total='/<variable_total\s*totalman="([^"]*)"\s*totalmenoy="([^"]*)"\s*totaljifen="([^"]*)"/i';
@header("Content-Type: text/html; charset=utf-8");
if(preg_match($re_total, $xmlstr, $mat)){
print_r($mat);
echo '<hr/>';
}
if(preg_match_all($re, $xmlstr, $matches)){
print_r($matches);
echo '<hr/>';
}
wudipaopao
2011-01-19 · TA获得超过797个赞
知道小有建树答主
回答量:1486
采纳率:0%
帮助的人:799万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jra38343
2011-01-19 · TA获得超过876个赞
知道小有建树答主
回答量:985
采纳率:0%
帮助的人:739万
展开全部
下边是用dom函数处理的文件,正则处理的写到你另一个帖子里了

关于控制数据,你在循环里边写个判断就可以 if($i>100)break;
$dom = new DOMDocument();
$dom->load('8888.xml');
$totalnode = $dom->getElementsByTagName('variable_total')->item(0);
echo $totalnode ->getAttribute('totalman').' ';
echo $totalnode ->getAttribute('totalmenoy').' ';
echo $totalnode ->getAttribute('totaljifen').'<hr/>';

$allnodes = $dom->getElementsByTagName('variable_sysnew');
$i=0;
foreach ($allnodes as $node) {
if($i>100)break;
echo ' '.$node ->getAttribute('name').' ';
echo $node ->getAttribute('value').' ';
echo $node ->getAttribute('web_html').' ';
echo $node ->getAttribute('title_name').'<br/>';
$i++;
}

exit;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式