/*
* 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 - dry aged meat fuzzy yellow mold
Paleo Diet: Raw Paleo Diet and Lifestyle Forum
Raw Paleo Diet Forums => General Discussion => Topic started by: svrn on September 18, 2013, 12:19:49 pm
-
I just got a dry aged roast and for the first time i see one side covered in a yellow fuzzy mold whos fuzzes are about a half inch tall.
I eat the white mold on the crust of the dry aged meat but have enver encounterred this fuzzy yellow mold before.
-
As long as you can trust the meat source, I'd just scrape off the mold and eat the meat underneath it.
Where are you keeping the roast? in the fridge? Is it open to air, or in a container?
-
open air in the fridge.
I did as you said. No problems.
What im mainly wondering is if inyone has eaten the fuzzy yellow mold before and if it has any medicinal properties.
-
I've not seen it. maybe Iguana, sabertooth, or eveheart have. they all do a lot of dry-aging of meat.