2009-08-15 14:39:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- $Revision$ -->
|
|
|
|
<refentry xml:id="reflectionmethod.invoke" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>ReflectionMethod::invoke</refname>
|
|
|
|
<refpurpose>Invoke</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
|
|
|
<modifier>public</modifier> <type>mixed</type><methodname>ReflectionMethod::invoke</methodname>
|
2020-12-30 17:35:49 +00:00
|
|
|
<methodparam><type class="union"><type>object</type><type>null</type></type><parameter>object</parameter></methodparam>
|
2020-11-02 11:17:26 +00:00
|
|
|
<methodparam rep="repeat"><type>mixed</type><parameter>args</parameter></methodparam>
|
2009-08-15 14:39:48 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
Invokes a reflected method.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>object</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2011-07-29 10:46:17 +00:00
|
|
|
The object to invoke the method on. For static methods, pass
|
2010-07-21 21:38:42 +00:00
|
|
|
<type>null</type> to this parameter.
|
2009-08-15 14:39:48 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
2020-11-02 11:17:26 +00:00
|
|
|
<term><parameter>args</parameter></term>
|
2009-08-15 14:39:48 +00:00
|
|
|
<listitem>
|
|
|
|
<para>
|
2010-07-21 21:38:42 +00:00
|
|
|
Zero or more parameters to be passed to the method.
|
|
|
|
It accepts a variable number of parameters which are passed to the method.
|
2009-08-15 14:39:48 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
2010-07-21 21:38:42 +00:00
|
|
|
Returns the method result.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="errors">
|
|
|
|
&reftitle.errors;
|
|
|
|
<para>
|
|
|
|
A <classname>ReflectionException</classname> if the <parameter>object</parameter>
|
|
|
|
parameter does not contain an instance of the class that this method was declared in.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
A <classname>ReflectionException</classname> if the method invocation failed.
|
2009-08-15 14:39:48 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2010-07-22 20:03:49 +00:00
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
2010-07-27 18:48:17 +00:00
|
|
|
<title><methodname>ReflectionMethod::invoke</methodname> example</title>
|
2010-07-22 20:03:49 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
class HelloWorld {
|
|
|
|
|
|
|
|
public function sayHelloTo($name) {
|
|
|
|
return 'Hello ' . $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
|
|
|
|
echo $reflectionMethod->invoke(new HelloWorld(), 'Mike');
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
Hello Mike
|
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2012-01-05 05:55:06 +00:00
|
|
|
<refsect1 role="notes">
|
|
|
|
&reftitle.notes;
|
|
|
|
<note>
|
|
|
|
<para>
|
2021-04-28 12:02:24 +00:00
|
|
|
<methodname>ReflectionMethod::invoke</methodname> cannot be used when reference parameters are expected.
|
2021-04-28 08:12:06 +00:00
|
|
|
<methodname>ReflectionMethod::invokeArgs</methodname> has to be used instead (passing references in the argument list).
|
2012-01-05 05:55:06 +00:00
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
</refsect1>
|
|
|
|
|
2009-08-15 14:39:48 +00:00
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><methodname>ReflectionMethod::invokeArgs</methodname></member>
|
2012-01-12 15:01:15 +00:00
|
|
|
<member><link linkend="object.invoke">__invoke()</link></member>
|
2012-01-07 23:10:41 +00:00
|
|
|
<member><function>call_user_func</function></member>
|
2009-08-15 14:39:48 +00:00
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2009-08-15 14:39:48 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|