PHP Functions
What will be the output of the following PHP code?
function sayHello() {
echo "HelloWorld";
}
$function_holder = "sayHello";
$function_holder();

HelloWorld
Error
sayHello
No Output

ANSWER DOWNLOAD EXAMIANS APP