What is the output of the following code? seenagape 10 years ago What is the output of the following code? function increment (&$val) { return $val + 1; } $a =1; echo increment ($a); echo increment ($a); A. 22 ← Previous question Next question →