You are here: Documentation » API Reference » SimplePie_Enclosure » get_type()
Table of Contents
get_type()
Description
class SimplePie_Enclosure { get_type() }
Returns the mime type of the enclosure, telling us what kind of file it is.
Availability
- Available since SimplePie Beta 2.
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()) { echo $enclosure->get_type(); } }
See Also
reference/simplepie_enclosure/get_type.txt · Last modified: 2011/03/06 03:56 (external edit)