Can I do the following?
function foo(&$a)
{
$a += 2;
}
foo($bar = 5);
// Desired Outcome:
// $bar = 7
In other words, can I pass an assignment by reference and have the desired outcome? (Yes, I know that I could do the test myself, but I'm working on something at the moment and it's actually quicker to ask here.)