Description
mixed
call_user_method ( string method_name, object obj [, mixed parameter [, mixed ___]])
| Aviso |
The call_user_method() function is deprecated
as of PHP 4_1_0, use the call_user_func() variety
with the array(&$obj, "method_name") syntax instead_
|
Calls the method referred by method_name from
the user defined obj object_ An example of usage
is below, where we define a class, instantiate an object and use
call_user_method() to call indirectly its
print_info method_
See also call_user_func_array(),
call_user_func(), and
call_user_method_array()_