Is it possible to pass functions by reference?
Something like this:
function call($func){ $func(); } function test(){ echo \"hello world!\";
You can say
$fun = 'test'; call($fun);