I am trying to parse a KML venue feed from foursqare with simpleXML but I cannot get the nested-in-desctription venue url. It looks like simpleXML strips it.
In detail:
The foursqare kml feed looks like this:
<kml>
<Folder>
<name>foursquare checkin history for X</name>
<description>foursquare checkin history for X</description>
<Placemark>
<name>somevenuename</name>
<description>@<a href="/v/somevenueurl">somevenuename</a>- a foursqareshout!</description>
<updated>Wed, 02 Nov 11 17:00:05 +0000</updated>
<published>Wed, 02 Nov 11 17:00:05 +0000</published>
<visibility>1</visibility>
<Point>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>xx.xxxxxx,yy.yyyyyy</coordinates>
</Point>
</Placemark>
etc ...
My call to simpleXMl is ... well, simple:
$venue_items = simplexml_load_file($venue_kml_file);
Any ideas who to preserve the html in description?
<description>should be CDATA if it can contain HTML. I know this doesn't really help, but it might be worth bringing this up with the feed provider, since they are making consumers lives a lot more difficult by not doing this... – DaveRandom Nov 6 '11 at 18:20