/* * 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; } } } } }
Without cooking, what would people have done if they killed an animal which was much larger than what they would like to eat in one day..?Fire would keep predators away. And humans are naturally wasteful. Some people believe wolves that were friendly and not scared of humans would eat leftovers and eventually this is how dogs were domesticated.
Whether or not you know what would have been done, what do you think is the best option, if in 'the wilderness'? I said without cooking.. I know there is drying using a flame, but I don't think that's really going to be particularly good(but I don't know), and maybe they don't have fire.
Also consider other organisms which may wish to feast on the remainder of the catch, many of which you would not want near you.
Would it perhaps be best to leave what can't be eaten? After all, what's left goes back in to the environment, where it can be recycled into other animals which you can eat later... <-- Actually I think this is probably the ideal option.
What about the attraction of other predators?HGs would see that as a bonus so as to get more prey that way. Besides, very few animals are so big that 1 tribe of people can't eat it all in one go.