Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #2 of 2


Q: 

What do you think will happen if you execute the following code?

function hello()
{
    echo 'Hello World!';
}

$func = 'hello';
$func();

userVoice