Question:What will be the output of the following code?$var = 10;function fn(){ $var = 20; return $var;}fn();echo $var;
A 10 B 20 C Undefined Variable D Syntax Error
+ AnswerA
+ Report