Re: result of a function inner one other



nawfer schreef:
how can inner file b.php to write a B function that recall function A
and return always the same arguments?


function B() {
recall here function A
}

function B() {
$args = func_get_args();
return call_user_func_array('A', $args);
}


JW
.