关于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所对应的值
请问要怎么操作啊? 展开
<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所对应的值
请问要怎么操作啊? 展开
3个回答
展开全部
关于你这个问题,我还是建议你用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/>';
}
这个是不会出错的
当然也可以用正则,不过如果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/>';
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
下边是用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;
关于控制数据,你在循环里边写个判断就可以 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;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询