Solution:1
Try call_user_func() http://php.net/manual/en/function.call-user-func.php
The first argument is a string representing the function name. The second argument can be a single argument, or an array of arguments.
Edit:
It will even support native functions like time(), as you asked. Try it out like so:
echo call_user_func( 'time' );