non puoi,
in
$args sarà sempre un array. Quindi se tu chiamiCodice PHP:
function __call($method, $args)
nella __call "hello" e "world" saranno due elementi dell'array argsCodice PHP:
class Foo{
function __call($method,$args){ echo "called $method with params".print_r($args,false); }
}
$foo = new Foo();
$foo->bar('hello','world');
EDIT: a meno che tu non intenda, dato args, come faccio a passarli ad un'altra funzione presente nella classe che non accetta array come argomenti?