get property from XML using PHP
Posted
by Adnan
on Stack Overflow
See other posts from Stack Overflow
or by Adnan
Published on 2010-05-07T23:56:43Z
Indexed on
2010/05/08
0:38 UTC
Read the original article
Hit count: 513
Hello,
I am using PHP's SimpleXML to get some values out of the following XML;
- <entry>
<id>http://www.google.com/m8/feeds/contacts/email_address%40gmail.com/base/0</id>
<updated>2010-01-14T22:06:26.565Z</updated>
<category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/contact/2008#contact" />
<title type="text">Customer Name</title>
<link rel="http://schemas.google.com/contacts/2008/rel#edit-photo" type="image/*" href="http://www.google.com/m8/feeds/photos/media/email_address%40gmail.com/0/34h5jh34j5kj3444" />
<link rel="self" type="application/atom+xml" href="http://www.google.com/m8/feeds/contacts/email_address%40gmail.com/full/0" />
<link rel="edit" type="application/atom+xml" href="http://www.google.com/m8/feeds/contacts/email_address%40gmail.com/full/0/5555" />
<gd:email rel="http://schemas.google.com/g/2005#other" address="[email protected]" primary="true" />
</entry>
I can get the title with:
$xml = new SimpleXMLElement($response_h1);
foreach ($xml->entry as $entry) {
echo $entry->title, '<br />';
}
But how to get the address="[email protected]" property?
© Stack Overflow or respective owner