/* * 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; } } } } }
Unsurprisingly, Dr McCarthy's hypothesis has come in for substantial criticism from orthodox evolutionary biologists and their Creationist opponents alike.from GS's article
One important criticism, which dubs his theory the 'Monkey-F******-A-Pig hypothesis', is that there is little chance that pigs and chimps could be interfertile. The two orders of creatures, according to evolutionary theory, diverged roughly 80million years ago, a ScienceBlogs post points out.
'[J]ust the gradual accumulation of molecular differences in sperm and egg recognition proteins would mean that pig sperm wouldn’t recognize a chimpanzee egg as a reasonable target for fusion,' PZ Myers writes.
Furthermore, the blogger explains, while chimps have 48 chromosomes, pigs have just 38.
He adds: 'Hybridizing a pig and a chimp is like taking half the dancers from a performance of Swan Lake and the other half from a performance of Giselle and throwing them together on stage to assemble something. It’s going to be a catastrophe.'
Finally, he suggests rather impudently that Dr McCarthy do the experimental work himself and try mating with a pig to see how far he gets.
But Dr McCarthy believes that, in the case of humans and other creatures, his hybrid modification to evolutionary theory can account for a range of phenomena that Darwinian evolution alone has difficulty explaining.