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

sayHello
HelloWorld
No Output
Error

ANSWER DOWNLOAD EXAMIANS APP