Briefing Zend Knowledge

What is the output of the following code?

What is the output of the following code? function increment (&$val) { return $val + 1; } $a =
1; echo increment ($a); echo increment ($a);

A.
22