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

Error
sayHello
No Output
HelloWorld

ANSWER DOWNLOAD EXAMIANS APP