Dynamic Function Calling in PHP
Why php is more flexible ? See this function example: If you want to pass some argument , you can use rest of the parameters of call-user_function; eg: call_user_func( array($R, $function ) , $param, $param2); For more info: http://www.php.net/call_user_func Share

