Start your All-Access Pass to unlock this challenge
What do you think will happen if you execute the following code?
function hello() { echo 'Hello World!'; } $func = 'hello'; $func();
Nothing will be printed, the actual function is never called
It will print "Hello World!"
It will throw a syntax error