mirror of
https://github.com/php/doc-ru.git
synced 2026-03-24 07:42:22 +01:00
161 lines
3.9 KiB
XML
161 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: fcddfb2551140fba9a14a4c44dc9fa60004440c8 Maintainer: tmn Status: ready -->
|
||
<!-- Reviewed: no -->
|
||
|
||
<refentry xml:id="reflectionfunction.invokeargs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
<refnamediv>
|
||
<refname>ReflectionFunction::invokeArgs</refname>
|
||
<refpurpose>Вызов функции с передачей аргументов</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<modifier>public</modifier> <type>mixed</type><methodname>ReflectionFunction::invokeArgs</methodname>
|
||
<methodparam><type>array</type><parameter>args</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Вызывает функцию и передаёт ей аргументы в виде массива.
|
||
</para>
|
||
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>args</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Передаваемые функции аргументы в виде массива. Поведение функции аналогично
|
||
<function>call_user_func_array</function>.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
Возвращает результат выполнения вызванной функции.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title>Пример использования <methodname>ReflectionFunction::invokeArgs</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->invokeArgs(array('Dr', 'Phil'));
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
&example.outputs;
|
||
<screen>
|
||
<![CDATA[
|
||
Dr. Phil
|
||
]]>
|
||
</screen>
|
||
</example>
|
||
</para>
|
||
<para>
|
||
<example>
|
||
<title>
|
||
Пример использования
|
||
<methodname>ReflectionFunction::invokeArgs</methodname> со ссылками
|
||
на аргументы
|
||
</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
function get_false_conditions(array $conditions, array &$false_conditions)
|
||
{
|
||
foreach ($conditions as $condition) {
|
||
if (!$condition) {
|
||
$false_conditions[] = $condition;
|
||
}
|
||
}
|
||
}
|
||
|
||
$function_ref = new ReflectionFunction('get_false_conditions');
|
||
|
||
$conditions = array(true, false, -1, 0, 1);
|
||
$false_conditions = array();
|
||
|
||
$function_ref->invokeArgs(array($conditions, &$false_conditions));
|
||
|
||
var_dump($false_conditions);
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
&example.outputs;
|
||
<screen>
|
||
<![CDATA[
|
||
array(2) {
|
||
[0]=>
|
||
bool(false)
|
||
[1]=>
|
||
int(0)
|
||
}
|
||
]]>
|
||
</screen>
|
||
</example>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="notes">
|
||
&reftitle.notes;
|
||
<note>
|
||
<para>
|
||
&reflection.invoke.reference;
|
||
</para>
|
||
</note>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><methodname>ReflectionFunction::invoke</methodname></member>
|
||
<member><methodname>ReflectionFunctionAbstract::getNumberOfParameters</methodname></member>
|
||
<member><link linkend="object.invoke">__invoke()</link></member>
|
||
<member><function>call_user_func_array</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
|
||
-->
|