I have the code below. I want to change $b to use it again with values. If I do so it changes $a as well. How can I assign a value to $b again after previously assigning it
$a = 1; $b = &$a; unset($b); // later $b = null;