Files
Fernando Wobeto 2a30c634e8 Tradução em reference/reflection/reflectionfunction (#620)
* Tradução em reference/reflection/reflectionfunction

* Update invoke.xml

* Update isdisabled.xml

* Update tostring.xml
2024-05-03 20:26:00 -03:00

116 lines
3.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ec2fe9a592f794978114ef5021db9f1d00c2e05d Maintainer: fernandowobeto Status: ready --><!-- CREDITS: adiel,fernandowobeto -->
<refentry xml:id="reflectionfunction.invoke" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>ReflectionFunction::invoke</refname>
<refpurpose>Invoca função</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis role="ReflectionFunction">
<modifier>public</modifier> <type>mixed</type><methodname>ReflectionFunction::invoke</methodname>
<methodparam rep="repeat"><type>mixed</type><parameter>args</parameter></methodparam>
</methodsynopsis>
<para>
Invoca uma função refletida.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>args</parameter></term>
<listitem>
<para>
A lista de argumentos passada. Aceita um número variável de
argumentos que são passados para a função de forma muito semelhante
à função <function>call_user_func</function>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Retorna o resultado da chamada de função invocada.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Exemplo de <methodname>ReflectionFunction::invoke</methodname></title>
<programlisting role="php">
<![CDATA[
<?php
function title($title, $name)
{
return sprintf("%s. %s\r\n", $title, $name);
}
$function = new ReflectionFunction('title');
echo $function->invoke('Dr', 'Phil');
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
Dr. Phil
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
<note>
<para>
<methodname>ReflectionFunction::invoke</methodname> não pode ser usado quando parâmetros de referência são esperados.
<methodname>ReflectionFunction::invokeArgs</methodname> deve ser usado (passando referências na lista de argumentos).
</para>
</note>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><methodname>ReflectionFunction::export</methodname></member>
<member><link linkend="object.invoke">__invoke()</link></member>
<member><function>call_user_func</function></member>
</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
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
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
-->