Q:

Find out the output

0

Find out the output

< ?php 
$foo = 'Bob';              
$bar = &$foo;              
$bar = "My name is $bar";  
echo $bar;
echo $foo;
?>

  1. Bob
  2. My name is Bob
  3. My name is BobMy name is Bob
  4. My name is

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

C.My name is BobMy name is Bob

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Which function is used to find the files in Php... >>
<< In which Version type hinting was introduced...