$id, ); } return false; } public function getData($parsed) { $video_id = $parsed['video_id']; $buffer = file_get_contents('https://gdata.youtube.com/feeds/api/videos/'.$video_id); $xml = new SimpleXMLElement($buffer); return array( 'title' => $xml->title, 'description' => strip_tags($xml->content), 'thumbnail' => "https://img.youtube.com/vi/$video_id/default.jpg", ); } }