SimplePie 1.5 is now available!

SimplePie Documentation.  Learn how to use this thing.  It's way better than going to school.

You are here: Documentation » API Reference » SimplePie » get_latitude()

get_latitude()

Description

class SimplePie {
	get_latitude ()
}

Returns the W3C WGS84 Basic Geo or GeoRSS-compatible latitude coordinates for the feed.

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();
 
echo $feed->get_latitude();
echo $feed->get_longitude();

See Also


reference/simplepie/get_latitude.txt · Last modified: 2011/03/06 03:56 (external edit)