|
Posted by Richard Lynch on 05/12/05 00:40
On Wed, May 11, 2005 12:13 pm, Christopher J. Bottaro said:
> You can do this in Python:
>
> <code>
> def myFunc(arg1, arg2, arg):
> #do something
>
> myList = [1, "arg", 5]
> myFunc(*myList) # calls myFunc(1, "arg", 2)
> <code>
>
> Can that be done in PHP, and if so, how?
You mean call a user function with an array for the parameters?
Didja search the PHP website?
You should have found this:
http://php.net/call_user_func_array
--
Like Music?
http://l-i-e.com/artists.htm
Navigation:
[Reply to this message]
|