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_Caption » get_type()

get_type()

Description

class SimplePie_Caption {
	get_type()
}

Returns the type (text or HTML) of the given caption. This mostly has relevance to Media RSS content.

Availability

  • Available since SimplePie 1.0.

Examples

$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->init();
$feed->handle_content_type();
 
foreach ($feed->get_items() as $item)
{
	if ($enclosure = $item->get_enclosure())
	{
		if ($caption = $enclosure->get_caption())
		{
			echo '<p>' . $caption->get_text() . ' (' . $caption->get_type() . ')</p>';
		}
	}
}

See Also


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