/* * 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; } } } } }
Oh btw I think I'm lacking vit D due to sunlight, so trying to address this.
I've been hardcore raw paleo for a few weeks now with no deviations, and have gone VLC - about 30g carb a day.
I feel ok but have had a couple of ulcers which I don't often get. Do you know what could cause this?
Presumably not vit b deficiency as I mostly eat red meat. My diet is mostly beef tongue, hearts, mince/ground beef, bone marrow, suet and for fruit a bit of melon or berries, or sometimes grapes. The occasional beef kidney.
I've been hardcore raw paleo for a few weeks now with no deviations, and have gone VLC - about 30g carb a day.FWIW, in my case the flesh on the inside of my cheeks starts to decay and shred if I eat too much carbs and I appear to become more prone to canker sores if I also eat acidic foods like pineapple, citrus, green grapes, green apples, tomato sauce, green peppers, ..., though wheat was the thing that caused the worst sores for me. It sounds like the only change you made was adding carbs, so that's an interesting coincidence. YMMV
I feel ok but have had a couple of ulcers which I don't often get. Do you know what could cause this? ...
H. pylori infection are believed to play an important role, also cause stomach and duodenal ulcers.Another main reason is the long-term use of anti-inflammatory drugs such as aspirin. Smoking is also an important reason, ulcer formation and ulcer treatment failure.