/* * 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; } } } } }
The cell walls burst and the cell contents are spilled due to the internal water expansion; hence the cell's life is lost.
When the cells burst, certain of their organelles release self-destruct enzymes called lysosomes. While these enzymes are not active during freezing (and some are even destroyed), those which remain intact will speedily decompose the cell contents upon thawing. Lysosomes are in cells for the purpose of self-destructing dead cells so the dead cells will not create problems for the organism.
I find this analysis totally dubious. Cells in dead flesh are already dead. Dead cells do not release any enzymes. The leakage is negligible in low temp. Even at room temperature nutrient loss would be minimal. Most of the nutrients will still be locked in the flesh.
I find the article dubious also. The degradation rate of all enzymes and nutrients I've studied is temperature-dependent. At higher temperatures they always break down faster, at lower temperatures they break down more slowly. I have yet to find an exception to this. If anyone knows of one, let me know.