* Thus wrote Andrew Nagy:
> How do you use the call_user_func function with call-time 
> pass-by-reference deprecation?
> 
> For example:
> 
> function fun(&$arg) {
>   $arg++;
> }
> $var = 0;
> call_user_func("fun", $var);
> echo $var; //echoes 0 instead of 1

$func_call = 'fun';
$func_call($var);

Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to