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

Will this work
$msg
Error
0

ANSWER DOWNLOAD EXAMIANS APP