- 2
What is the output of this code $a = '1' ; $b = &$a; $b = "2$b" ; echo $a. ", " .$b;
in php
5 Answers
- 1
21,21 right?
0
function
myFunction($a, $b) {
echo $a
*
$b;
}
0
21,21
as ampersand operator is used so the valud of $a would be same as $b.
0
21, 21
- 1
______myFunction($a, $b) {
echo $a_$b;
}