unset reference variables
<?php $a = "AAA"; $b = &$a; $c = &$b; print($a . "<br />"); unset($b); print($c . "<br />"); ?>