Re: Variable Argument List

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





Daniel Kolbo wrote:
Hello,

I am trying to do something like the following:

<?php

function hello($var1 = 'default1', $var2 = 'default2') {
   echo "$var1:$var2";
}

$func= "hello";
$args = "'yo','bob'";
$func($args);

?>

I understand why this outputs:
'yo','bob':default2
However, I want it to output:
yo:bob

Is this possible? I tried using different combinations of {}, but I cannot seem to get it to happen. I need some kind of "preprocessor" feature perhaps.

Thanks,
dK

answered my own question:
call_user_func_array($func, array("yo","bob"));
will do the trick for me.
thanks,
dK

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux