Question from the PHP7 test

What is the output of the following code?

Medium

what is the output of the following code ?

$a = 1;

\$b = &$a;

\$x = $b;

\$m = $x;

$m++;

echo \$a . ", " . \$b. ", ". \$x. ", ". \$m;
Author: hafidiStatus: PublishedQuestion passed 26 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!