Hi all.
Will PHP remove variables from memory when script will NOT use them in rest
of code?
for example:

<?php
$tmp=true;
if ($tmp)  // here is $tmp used last time, will it be removed from memory?
...
... // $tmp is NOT in the rest of code
...
...
?>

or I must use allways unset()?

Thanx

Emo

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to