vote up 1 vote down star

I want to convert the arguments to a function into an associative array with keys equal to the parameter variable names, and values equal to the parameter values.

PHP:

function my_function($a, $b, $c) {

    // <--- magic goes here to create the $params array

    var_dump($params['a'] === $a); // Should result in bool(true)
    var_dump($params['b'] === $b); // Should result in bool(true)
    var_dump($params['c'] === $c); // Should result in bool(true)
}

How can I do this?

flag

Is there a reason you can't just define the initial function to accept an array as the first argument and feed an array? – meder Sep 14 at 2:41
meder: That would 1) provide an ugly API, and 2) require a lot of changes to calling source. Many of these functions already exist and are being called. – Fragsworth Sep 14 at 2:44
I don't really see why it would be an "ugly" API - to me it would be cleaner and akin to feeding dictionaries as arguments in Python and feeding objects in ECMAScript. – meder Sep 14 at 2:46
it makes the documentation clearer and lets PHP enforce that each function is passed the correct number/type of arguments. – nickf Sep 14 at 2:47

2 Answers

vote up 4 vote down check

The you can do this using compact:

function myFunc($a, $b, $c) {
    $params = compact('a', 'b', 'c');
    // ...
}

Or, get_defined_vars() will give you an associative array of all the variables defined in that scope, which would work, but I think this might also include $_POST, $_GET, etc...

Otherwise, you can use func_get_args to get a list of all the arguments passed to the function. This is not associative though, since it is only data which is passed (that is, there's no variable names). This also lets you have any number of arguments in your function.

Or, just specify one argument, which is an array:

function myFunc($params) {

}

compact() seems to be closest to what you're after though.

link|flag
The reason I don't like this is the variable names have to be repeated. – Fragsworth Sep 14 at 2:53
look at get_defined_vars then. – nickf Sep 14 at 2:58
vote up 1 vote down

get_defined_vars() is what you need if no other vars are defined before its called inside the function (you can ensure this by making it the first thing you do inside the function).

function my_function($a, $b, $c) {

    $params = get_defined_vars(); // <--- create the $params array

    var_dump($params['a'] === $a); // results in bool(true)
    var_dump($params['b'] === $b); // results in bool(true)
    var_dump($params['c'] === $c); // results in bool(true)
}
link|flag

Your Answer

Get an OpenID
or

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