note 13138 deleted from functions.arguments by felipe
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: korba at korbs dot pl
----
Don't try to pass func_get_arg() as an argument of the other function. So:
function foo() {
foo2(func_get_arg(0));
}
won't work.