<?php
$test='aaaaa';
$abc=& $test;
unset($test);
echo $abc;
?>
