$path[2], ); } public function getData($parsed) { $video_id = $parsed['video_id']; $buffer = file_get_contents("https://www.metacafe.com/api/item/$video_id"); $xml = new SimpleXMLElement($buffer); return array( 'title' => current($xml->xpath('/rss/channel/item/title')), 'description' => strip_tags(current($xml->xpath('/rss/channel/item/description'))), 'thumbnail' => current($xml->xpath('/rss/channel/item/media:thumbnail/@url')), 'embedurl' => current($xml->xpath('/rss/channel/item/media:content/@url')), ); } }