howdy,
     Just sending a note about the deprecation of the call_user_method() 
functions.  It basically sends an E_NOTICE message now when 
call_user_method() or call_user_method_array() are called. This is 
because the call_user_method() and call_user_method_array() functions 
can easily be duplicated by:

old way:
call_user_method($func, $obj, "method", "args", "go", "here");

new way:
call_user_func(array(&$obj, "method"), "method", "args", "go", "here");

Comments? Questions?

-Sterling


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to