【发布时间】:2014-01-20 14:31:32
【问题描述】:
我正在使用谷歌联系人 api 和 php 来解析 xml,如下所示:
$req = new Google_HttpRequest("https://www.google.com/m8/feeds/contacts/default/full");
$val = $client->getIo()->authenticatedRequest($req);
$xml = simplexml_load_string($val->getResponseBody());
$xml->registerXPathNamespace('gd', 'http://schemas.google.com/g/2005');
$output_array = array();
foreach ($xml->entry as $entry) {
foreach ($entry->xpath('gd:email') as $email) {
$output_array[] = array(
(string)$entry->title,
//THIS DOESNT WORK WHY??
(string)$entry->attributes()->href,
//
(string)$email->attributes()->address);
}
}
这会返回:
[1]=>
array(3) {
[0]=>
string(14) "LOREM IPSUM"
[1]=>
string(0) ""
[2]=>
string(28) "hogash.themeforest@gmail.com"
}
原始的 xml 响应是这样的:
<entry>
<id>http://www.google.com/m8/feeds/contacts/EMAIL/base/e29c818b038d9a</id>
<updated>2012-08-28T21:52:20.909Z</updated>
<category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/contact/2008#contact" />
<title type="text">Lorem ipsum</title>
<link rel="http://schemas.google.com/contacts/2008/rel#edit-photo" type="image/*" href="https://www.google.com/m8/feeds/photos/media/EMAIL/e29c818b038d9a/1B2M2Y8AsgTpgAmY7PhCfg" />
<link rel="self" type="application/atom+xml" href="https://www.google.com/m8/feeds/contacts/EMAIL/full/e29c818b038d9a" />
<link rel="edit" type="application/atom+xml" href="https://www.google.com/m8/feeds/contacts/EMAIL/full/e29c818b038d9a/1346190740909001" />
<gd:email rel="http://schemas.google.com/g/2005#other" address="hogash.themeforest@gmail.com" primary="true" />
</entry>
如何获取图片网址以及联系人姓名和职务?
【问题讨论】:
-
您正试图从三个
<link>标签中获取href? -
只是 image type="image/*" 就足够了,但三个都很好......