PHP Functions
What will be the output of the following PHP code?
function foo($msg) {
echo "$msg";
}
$var1 = "foo";
$var1("will this work");

Error
0
$msg
Will this work

ANSWER DOWNLOAD EXAMIANS APP