Posted by Mike Willbanks on 11/10/01 11:16
Ewoud Dronkert wrote:
> On Thu, 19 May 2005 07:56:25 -0500, Mike Willbanks wrote:
>
>>if (!validate_args(func_get_args())) {
>
>
> From the manual: "This function cannot be used directly as a function
> parameter."
>
>
Whoops :)
then:
$args = func_get_args();
if (!validate_args($args)) {
[Back to original message]
|