In PHP there are functions like unset() that support any number of parameter we throw at them.
I want to create a similar function that is capable of accepting any number of parameters and process them all.
Any idea, how to do this?
|
In PHP, use the function
An alternative is to pass an array of variables to your function, so you don't have to work with things like
|
||||
|
|
|
You can use these functions from within your function scope:
Some examples:
|
|||||
|
|
You can use func_get_args() inside your function to parse any number of passed parameters. |
|||
|
|
|
If you intend to do more research on the matter in the future, the term you're looking for is variadic function. The linked Wikipedia article even includes an example for PHP. |
|||
|
|
|
You will have 3 functions at your disposal to work with this. Have the function declaration like:
Functions you can use are as followsfunc_num_args() Which returns the amount of arguments that have been passed to the array func_get_arg($index) Which returns the value of the argument at the specified index func_get_args() Which returns an array of arguments provided. |
|||
|
|
parse_str. – Aaron Harun Jun 20 '10 at 22:12