★" : ""; } return $star_rating; } /*-------------------------------------- // Detect TV show Seasons and Episodes in results --------------------------------------*/ function is_season_or_episode($search_query, $result_query) { // Check if you searched for a tv show and result is a tv show if(preg_match_all('/.+?(?=S[0-9]{1,4}E[0-9]{1,3})/', strtoupper($search_query), $match_query) && preg_match_all('/.+?(?=S[0-9]{1,4}E[0-9]{1,3})/', strtoupper($result_query), $match_result)) { // If a match: [0][0] = Season and [0][1] = Episode if($match_query[0][0] != $match_result[0][0] || (array_key_exists(1, $match_query[0]) && $match_query[0][1] != $match_result[0][1])) { return false; // Not the tv show (episode) you're looking for } } return true; } ?>