Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
function a($function, $array)
{
    global $test

    $test->$function(implode(',' $array));
}

For example, I want to be able to pass the various arguments to a second function inside.

So if I passed a('x', array('a', 'b')) it'd execute $test->x('a', 'b');

The imploding obviously doesn't work due to making it a string, not passing arguments, unsure how to do it.

share|improve this question

2 Answers

up vote 5 down vote accepted

You could use call_user_func_array().

call_user_func_array(array($test, $function), $array);
share|improve this answer
2  
This is better. – Joseadrian Mar 4 '11 at 2:54
function a($function, $array)
{
    global $test

    $test->{$function}($array[0], $array[1]);
}

or

function a($function, $arg1, $arg, $arg3...)
{
    global $test
    $arg = func_get_args();
    unset($arg[0]); // because it is the $function arg
    $test->{$function}($arg);
}
share|improve this answer
1  
Your second alternative takes multiple arguments to a() and passes them as an array to $function. The OP wanted to do the reverse of that. – John Flatness Mar 4 '11 at 2:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.