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

HelloWorld
No Output
Error
sayHello

ANSWER DOWNLOAD EXAMIANS APP