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 

+ Answer
+ Report
Total Preview: 349

Copyright © 2024. Powered by Intellect Software Ltd