/* 
 * Patch for filter_var()
 */
if(!function_exists('filter_var')){
	
	define('FILTER_VALIDATE_IP', 'ip');
	define('FILTER_FLAG_IPV4', 'ipv4');
	define('FILTER_FLAG_IPV6', 'ipv6');
	define('FILTER_VALIDATE_EMAIL', 'email');
	define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
	
	function filter_var($variable, $filter, $option = false){
		if($filter == 'ip'){
			if($option == 'ipv4'){
				if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
					$variable = $matches[1];
					return $variable;
				}
			}
			if($option == 'ipv6'){
				if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
					$variable = $matches[1];
					return $variable;
				}
			}
		}
		if($filter == 'email'){
			if($option == 'unicode' || $option == false){
				if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
					$variable = $matches[1];
					return $variable;
				}
			}
		}
	}
}
	
		
		
		
		Print Page - Cooked stinky food gets banned in Italy!
		
	
	
		Paleo Diet: Raw Paleo Diet and Lifestyle Forum
		Raw Paleo Diet Forums => Hot Topics => Topic started by: TylerDurden on April 06, 2017, 07:23:34 am
		
			
			- 
				http://www.dailymail.co.uk/news/article-4384424/Stinky-cooking-criminal-offence-Italy.html?param_usr=1¶m_targetUrl=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-4384424%2FStinky-cooking-criminal-offence-Italy.html¶m_geolocation=row¶m__host=secured.dailymail.co.uk¶m_hideMasthead=¶m_hideFooter=&base_fe_url=http%3A%2F%2Fdailymail.co.uk%2F&validation_fe_uri=%2Fregistration%2Fp%2Fapi%2Ffield%2Fvalidation%2F&check_user_fe_uri=registration%2Fp%2Fapi%2Fuser%2Fuser_check%2F&isMobile=false (http://www.dailymail.co.uk/news/article-4384424/Stinky-cooking-criminal-offence-Italy.html?param_usr=1¶m_targetUrl=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-4384424%2FStinky-cooking-criminal-offence-Italy.html¶m_geolocation=row¶m__host=secured.dailymail.co.uk¶m_hideMasthead=¶m_hideFooter=&base_fe_url=http%3A%2F%2Fdailymail.co.uk%2F&validation_fe_uri=%2Fregistration%2Fp%2Fapi%2Ffield%2Fvalidation%2F&check_user_fe_uri=registration%2Fp%2Fapi%2Fuser%2Fuser_check%2F&isMobile=false)
 
 I hope we will get curries and other stinky cooked food eventually banned in the UK as well.