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

No Output
HelloWorld
sayHello
Error

ANSWER DOWNLOAD EXAMIANS APP