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 39 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
3
Display the first element of an array in PHP2
Write a PHP code that displays the full name of a person.2
Which of the following statements are correct?2
What will this code display?3
What will this code display?4
Which of these PHP code snippets are valid?2
Which of the following are PHP framework names?