You are here: Documentation » API Reference » SimplePie_Item » get_longitude()
Table of Contents
get_longitude()
Description
class SimplePie_Item { get_longitude () }
Returns the W3C WGS84 Basic Geo or GeoRSS-compatible longitude coordinates for the item.
Availability
- Available since SimplePie 1.0.
Examples
Display the coordinates of the feed
$feed = new SimplePie(); $feed->set_feed_url('http://simplepie.org/blog/feed/'); $feed->init(); $feed->handle_content_type(); foreach ($feed->get_items() as $item) { echo $item->get_latitude(); echo $item->get_longitude(); }
See Also
- [[reference:SimplePie_Item:get_
reference/simplepie_item/get_longitude.txt · Last modified: 2011/03/06 03:56 (external edit)