[PHP-DEV] call_user_method_array() deprecated?

2002-01-27 Thread Sebastian Bergmann
Using the PEAR Cache with PHP 4.1.1 and E_ALL enabled, a friend of mine gets: Warning: The call_user_method_array() function is deprecated, use the call_user_func variety with the array(&$obj, "method") syntax instead in C:\php4\pear\Cache\Function.php on line 133 Why has call_

Re: [PHP-DEV] call_user_method_array

2001-02-26 Thread Andrei Zmievski
On Sun, 25 Feb 2001, Wez Furlong wrote: > Hi, > > I have written a call_user_method_array function that, This function has already been implemented for the next release. -Andrei * The future is not what it used to be. * -- PHP Development Mailing List To unsubscribe, e-m

[PHP-DEV] call_user_method_array

2001-02-25 Thread Wez Furlong
Hi, I have written a call_user_method_array function that, surprise surprise, calls a user method and passes arguments from an array - the object/class equivalent of call_user_func_array. The code is below. In the function table, I have made the second arg passed by reference, as it is not ve