I have a PHP function and I want it to equal a variable. Here is the code:
function foo() { echo "In foo()\n"; } $func = 'foo'; $func(); // This calls foo()