Re: [PHP] call_user_func problem

2001-12-01 Thread Papp Gyozo
| That means that you should create a .htaccess file containing that: | | php_value allow_call_time_pass_reference 1 | | That should work :) But as the errormessage mentioned it may not supported in future version. I think if you declare your function arguments to be passed by variables

Re: [PHP] call_user_func problem

2001-11-30 Thread faeton
Hello C, That means that you should create a .htaccess file containing that: php_value allow_call_time_pass_reference 1 That should work :) C> Prior to 4.0.6 it worked fine, however, now when I try: C> $result = call_user_func("foo", &$bar); C> function foo( &$bar ) { C>$bar .= 'foobar'