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

Error
$msg
Will this work
0

ANSWER DOWNLOAD EXAMIANS APP