|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
既然选择了PHP,就要坚持学下去!大家有没有问自己为什么会选择学习PHP呢?就我个人而言,完全是因为兴趣,因为我的专业和计算机完全无关,但是就是对编程很赶兴趣,尤其对网络编程、web开发特别赶兴趣。 看了这个成绩,第一个反响就是namespace的关系,但我历来没有利用simplexml操作过namespace,因而就掀开手册查了一下材料,成绩并没有处理,终究是经由过程谷歌处理了该成绩。
发问题的伴侣贴出了数据源,来自于:http://code.谷歌.com/intl/zh-CN/apis/contacts/docs/3.0/developers_guide_protocol.html#retrieving_without_query,数据布局大致以下:
复制代码 代码以下:
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gContact='http://schemas.谷歌.com/contact/2008' xmlns:batch='http://schemas.谷歌.com/gdata/batch' xmlns:gd='http://schemas.谷歌.com/g/2005' gd:etag='W/"CUMBRHo_fip7ImA9WxRbGU0."'>
<id>liz@gmail.com</id>
<updated>2008-12-10T10:04:15.446Z</updated>
<category scheme='http://schemas.谷歌.com/g/2005#kind' term='http://schemas.谷歌.com/contact/2008#contact' />
<title>Elizabeth Bennet's Contacts</title>
<link rel='http://schemas.谷歌.com/g/2005#feed' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full' />
<link rel='http://schemas.谷歌.com/g/2005#post' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full' />
<link rel='http://schemas.谷歌.com/g/2005#batch' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full/batch' />
<link rel='self' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full?max-results=25' />
<author>
<name>Elizabeth Bennet</name>
<email>liz@gmail.com</email>
</author>
<generator version='1.0' uri='http://www.谷歌.com/m8/feeds'> Contacts </generator>
<openSearch:totalResults>1</openSearch:totalResults>
<openSearch:startIndex>1</openSearch:startIndex>
<openSearch:itemsPerPage>25</openSearch:itemsPerPage>
<entry gd:etag='"Qn04eTVSLyp7ImA9WxRbGEUORAQ."'>
<id> http://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/base/c9012de </id>
<updated>2008-12-10T04:45:03.331Z</updated>
<app:edited xmlns:app='http://www.w3.org/2007/app'>2008-12-10T04:45:03.331Z</app:edited>
<category scheme='http://schemas.谷歌.com/g/2005#kind' term='http://schemas.谷歌.com/contact/2008#contact' />
<title>Fitzwilliam Darcy</title>
<gd:name>
<gd:fullName>Fitzwilliam Darcy</gd:fullName>
</gd:name>
<link rel='http://schemas.谷歌.com/contacts/2008/rel#photo' type='image/*' href='https://www.谷歌.com/m8/feeds/photos/media/liz%40gmail.com/c9012de' gd:etag='"KTlcZWs1bCp7ImBBPV43VUV4LXEZCXERZAc."' />
<link rel='self' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full/c9012de' />
<link rel='edit' type='application/atom+xml' href='https://www.谷歌.com/m8/feeds/contacts/liz%40gmail.com/full/c9012de' />
<gd:phoneNumber rel='http://schemas.谷歌.com/g/2005#home' primary='true'> 456 </gd:phoneNumber>
<gd:extendedProperty name='pet' value='hamster' />
<gContact:groupMembershipInfo deleted='false' href='http://www.谷歌.com/m8/feeds/groups/liz%40gmail.com/base/270f' />
</entry>
</feed>
这个布局在下面的地址里有,这个是我格局化过的XML数据,如今要获得相似于“<gd:phoneNumber rel='http://schemas.谷歌.com/g/2005#home' primary='true'> 456 </gd:phoneNumber> ”中的值。
终究代码以下:
复制代码 代码以下:
$x = new SimpleXmlElement($str);
foreach($x->entry as $t){
echo $t->id . "<br >";
echo $t->updated . "<br />";
$namespaces = $t->getNameSpaces(true);
$gd = $t->children($namespaces['gd']);
echo $gd->phoneNumber;
}
固然,假如不象下面如许写,也能够写成如许:
复制代码 代码以下:
$x = new SimpleXmlElement($str);
foreach($x->entry as $t){
echo $t->id . "<br >";
echo $t->updated . "<br />";
//$namespaces = $t->getNameSpaces(true);
//注重这里与下面一段的区分
$gd = $t->children('http://schemas.谷歌.com/g/2005');
echo $gd->phoneNumber;
}
只是象第二种写法就属于硬编码了,如许不太好,万一哪天有变更,还得再更改N多代码。
成绩相继而来,好比象上面这段:
复制代码 代码以下:
<event:event>
<event:sessionKey></event:sessionKey>
<event:sessionName>Learn QB in Minutes</event:sessionName>
<event:sessionType>9</event:sessionType>
<event:hostWebExID></event:hostWebExID>
<event:startDate>02/12/2009</event:startDate>
<event:endDate>02/12/2009</event:endDate>
<event:timeZoneID>11</event:timeZoneID>
<event:duration>30</event:duration>
<event:description></event:description>
<event:status>NOT_INPROGRESS</event:status>
<event:panelists></event:panelists>
<event:listStatus>PUBLIC</event:listStatus>
</event:event>
这类非尺度的XML,没有界说定名空间,怎样办?在这类情形下,其实SimpleXmlElement就已直接可以处理了,然而会报warnging,由于他以为event这个定名空间不存在。
处理办法是:
复制代码 代码以下:
$xml = @new SimpleXmlElement($str);//在后面加@遏止毛病。
echo "<pre>";
print_r($xml);
今朝看来,这类处理办法对照好。
PHP SimpleXML 函数 相干材料
http://www.jb51.net/w3school/php/php_ref_simplexml.htm
PHP SimpleXML
http://www.jb51.net/w3school/php/php_xml_simplexml.htm也或许是因为我还没有真正的学到深处吧,说实在的,PHP中的很多高级点的应用,如PHP类、PHP函数基本还是不懂吧! |
|