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

$msg
Will this work
0
Error

ANSWER DOWNLOAD EXAMIANS APP