/*
* 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 - Abbreviated Terms Used By Rawpalaeos
Paleo Diet: Raw Paleo Diet and Lifestyle Forum
Raw Paleo Diet Forums => General Discussion => Important Info for Newbies => Topic started by: TylerDurden on December 21, 2009, 11:46:06 pm
-
SMD= Standard Modern Diet
RPD = Raw Palaeolithic Diet
RVAF diet= Raw Vegetable and Animal Food Diet.
HC= High Carb.
AGEs= Advanced Glycation End-Products.
ALEs= Advanced Lipoxidation End-Products.
PAHs= Polycyclic Aromatic Hydrocarbons.
NSAs= Nitrosamines.
HCAs= Heterocyclic Amines.
AV= Aajonus Vonderplanitz.
PD= Primal Diet.
GCB= Guy-Claude Burger.
WAPF= Weston.A Price Foundation.
SF= Sally Fallon.
LC= Loren Cordain
WP= Weston-Price.
RAF= Raw Animal Food
HG= Hunter-Gatherer
SAD= Standard American Diet
LC= Low Carbohydrate
VLC= Very Low Carbohydrate Diet
ZC= Zero-Carb Diet(ie all-animal food diet).
PD= Paleolithic Diet.
IF=Intermittent Fasting.
SFAs= Saturated Fatty Acids.
PUFAs=Polyunsaturated Fatty Acids.
-
RVAF diet= Raw Animal and Vegetable Diet.
Raw Vegetable & Animal Diet...or should that read RAVF?
How about ZC = zero carb?
-
Added in and corrected.
-
what are PUFAs? some kind of fatty acid, but what kind?
-
what are PUFAs? some kind of fatty acid, but what kind?
Poly-unsaturated fatty acids, also known as Omega-3 fatty acids.
-
IF - Intermittent Fasting
We should also distinguish between Primal Diet and Paleo Diet since both could use the same acronym (PD).