Re: [PHP] Passing a function & arguments to a function

2005-06-10 Thread Jochem Maas
David Johnson wrote: I am trying to pass a function as an argument to another function, and then run the first function from within the second function. Example: function function0($arg0, $arg1, $arg2) { function2(); } > function3(); do_function($arg5);

[PHP] Passing a function & arguments to a function

2005-06-10 Thread David Johnson
I am trying to pass a function as an argument to another function, and then run the first function from within the second function. Example: function function0($arg0, $arg1, $arg2) { function2(); } function function1($arg3, $arg4, $arg5) { function3(); do_f