ReflectionMethod::invokeInvoke
&reftitle.description;
publicmixedReflectionMethod::invokeobjectobjectmixedparametermixed...
Invokes a reflected method.
&reftitle.parameters;
object
The object to invoke the method on. For static methods, pass
null to this parameter.
parameter
Zero or more parameters to be passed to the method.
It accepts a variable number of parameters which are passed to the method.
&reftitle.returnvalues;
Returns the method result.
&reftitle.errors;
A ReflectionException if the object
parameter does not contain an instance of the class that this method was declared in.
A ReflectionException if the method invocation failed.
&reftitle.examples;
ReflectionMethod::invoke example
invoke(new HelloWorld(), 'Mike');
?>
]]>
&example.outputs;
&reftitle.seealso;
ReflectionMethod::invokeArgs__invoke