Possible Duplicates:
What's better at freeing memory with PHP: unset() or $var = null
Is there a real benefit of unsetting variables in php?
class test {
  public function m1($a, $b)
    $c = $a + $b;
    unset($a, $b);
    return $c;
  }
}
Is it true that unsetting variables doesn't actually decrease the memory consumption during runtime?
 
     
     
     
     
     
     
     
    