/* * 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; } } } } }
I would recommend it over raw cows' milk as it has a special extra tang. Well, for those who aren't allergic to raw dairy anyway. Raw sheeps milk is also very tasty.
Mate I have a question. You sent me a link to your starter guide for the primal diet but somewhere in there you said that you should not drink raw milk? Not sure if your stance has changed on that.The thing is that most of the people who try out this diet have already tried and failed with all other diets, previously. Dairy and grains are heavily implicated in a wide number of health-problems so, a sick person would be well-advised to avoid even raw dairy on a RVAF diet, at least until he is again radiantly healthy. If you are already supremely healthy, then I do not see raw-dairy consumption as the end of the world, though, based on guesswork etc., I would still caution against raw-dairy-consumption if you are already allergic to pasteurised dairy. Basically, milk is a food designed for infants, goats' milk for goat-kids, and therefore there are various hormones etc. unsuited for human-consumption/adult-consumption. Plus, excess calcium in dairy has been blamed as being potentially a problem for bone-health over decades.