f_artist) . '&song=' . urlencode($song->title) . '&fmt=xml&func=getSong'; $request = Requests::get($uri, array(), Core::requests_options()); if ($request->status_code == 200) { $xml = simplexml_load_string($request->body); if ($xml) { if (!empty($xml->lyrics) && $xml->lyrics != "Not found") { return array('text' => nl2br($xml->lyrics), 'url' => $xml->url); } } } return false; } // get_lyrics } // end Ampachelyricwiki ?>