Consider the following:
function doSomething(&$val) { $val++; } $a = 1; doSomething($a);
What does the variable $a now equal?