I need to pass params (like: 'param1', 'param2', 'param3') to the method... but I have array of params (like: array('param1', 'param2', 'param3')). How to convert array to params?

function foo(array $params) {

    bar(
        // Here should be inserted params not array.
    );

}
link|improve this question

When you pass the $params array will you know the param names? – Adrian World Jul 3 '11 at 14:05
@Adrian, yes. Can you suggest something? – daGrevis Jul 3 '11 at 14:18
yes. see answer – Adrian World Jul 3 '11 at 15:54
feedback

2 Answers

up vote 3 down vote accepted

Use the function call_user_func_array.

For example:

call_user_func_array('bar', $params);
link|improve this answer
I tried like this, but it gives me an error. – daGrevis Jul 3 '11 at 13:42
I think you passed a string for $data. – ComFreek Jul 3 '11 at 13:52
Nope. list_users(array('username', 'email'), 10, 0); – daGrevis Jul 3 '11 at 14:05
But you call with call_use_func_array the function list_users with the parameters 'username' and 'email'. But your function requires an array, an integer and again an integer. So the $data array must contain the parameters of the list_users function. – ComFreek Jul 3 '11 at 14:16
See here: pastie.org/2158534 – ComFreek Jul 3 '11 at 14:20
feedback

If you know the param names you could to the following

$params = array(
    'param1' => 'value 1',
    'param2' => 'value 2',
    'param3' => 'value 3',
);

function foo(array $someParams) {
    extract($someParams);  // this will create variables based on the keys

    bar($param1,$param2,$param3);
}

Not sure if this is what you had in mind.

link|improve this answer
@daGrevis: tks for the tweet – Adrian World Jul 3 '11 at 16:27
No problems, pal. – daGrevis Jul 3 '11 at 16:29
feedback

Your Answer

 
or
required, but never shown

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