[PHP] Re: quicker arrays as func args?

2005-01-13 Thread M. Sokolewicz
Justin French wrote: Hi all, Pretty sure this can't be done, but thought I'd ask any way... I have a function where the 3rd argument is an array.. function foo($a,$b,$c) { echo $a.$b; print_r($c); } Obviously the function does more than that, but anyway, I want the calls to this function

[PHP] Re: quicker arrays as func args?

2005-01-13 Thread Jason Barnett
M. Sokolewicz wrote: Justin French wrote: Hi all, Pretty sure this can't be done, but thought I'd ask any way... I have a function where the 3rd argument is an array.. function foo($a,$b,$c) { echo $a.$b; print_r($c); } Obviously the function does more than that, but anyway, I want the