1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-24 07:42:10 +01:00
Files
archived-doc-en/reference/funchand/functions/call-user-func-array.xml
Michael Cordover 5832a97c69 call_user_func_array $args need not be indexed (#2385)
Since PHP 8.0, the keys can be used as argument names. Document
PHP 8 behavior, including error states and examples. Note that
there was already a changelog entry for this introduced in
21a6e32de5.
2023-03-30 13:53:33 +01:00

275 lines
6.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xml:id="function.call-user-func-array" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>call_user_func_array</refname>
<refpurpose>Call a callback with an array of parameters</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>call_user_func_array</methodname>
<methodparam><type>callable</type><parameter>callback</parameter></methodparam>
<methodparam><type>array</type><parameter>args</parameter></methodparam>
</methodsynopsis>
<para>
Calls the <parameter>callback</parameter> given by the first parameter with
the parameters in <parameter>args</parameter>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>callback</parameter></term>
<listitem>
<para>
The <type>callable</type> to be called.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>args</parameter></term>
<listitem>
<para>
The parameters to be passed to the callback, as an array.
</para>
<para>
If the keys of <parameter>args</parameter> are all numeric,
the keys are ignored and each element will be passed to
<parameter>callback</parameter> as a positional argument, in
order.
</para>
<para>
If any keys of <parameter>args</parameter> are strings,
those elements will be passed to <parameter>callback</parameter>
as named arguments, with the name given by the key.
</para>
<para>
It is a fatal error to have a numeric key in <parameter>args</parameter>
appear after a string key, or to have a string key that does not
match the name of any parameter of <parameter>callback</parameter>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Returns the return value of the callback, or &false; on error.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.0.0</entry>
<entry>
<parameter>args</parameter> keys will now be interpreted as parameter names, instead of being silently ignored.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title><function>call_user_func_array</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
function foobar($arg, $arg2) {
echo __FUNCTION__, " got $arg and $arg2\n";
}
class foo {
function bar($arg, $arg2) {
echo __METHOD__, " got $arg and $arg2\n";
}
}
// Call the foobar() function with 2 arguments
call_user_func_array("foobar", array("one", "two"));
// Call the $foo->bar() method with 2 arguments
$foo = new foo;
call_user_func_array(array($foo, "bar"), array("three", "four"));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
foobar got one and two
foo::bar got three and four
]]>
</screen>
</example>
<example>
<title><function>call_user_func_array</function> using namespace name</title>
<programlisting role="php">
<![CDATA[
<?php
namespace Foobar;
class Foo {
static public function test($name) {
print "Hello {$name}!\n";
}
}
call_user_func_array(__NAMESPACE__ .'\Foo::test', array('Hannes'));
call_user_func_array(array(__NAMESPACE__ .'\Foo', 'test'), array('Philip'));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
Hello Hannes!
Hello Philip!
]]>
</screen>
</example>
<example>
<title>Using lambda function</title>
<programlisting role="php">
<![CDATA[
<?php
$func = function($arg1, $arg2) {
return $arg1 * $arg2;
};
var_dump(call_user_func_array($func, array(2, 4)));
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
int(8)
]]>
</screen>
</example>
<example>
<title>Passing values by reference</title>
<programlisting role="php">
<![CDATA[
<?php
function mega(&$a){
$a = 55;
echo "function mega \$a=$a\n";
}
$bar = 77;
call_user_func_array('mega',array(&$bar));
echo "global \$bar=$bar\n";
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
function mega $a=55
global $bar=55
]]>
</screen>
</example>
<example>
<title><function>call_user_func_array</function> using named arguments</title>
<programlisting role="php">
<![CDATA[
<?php
function foobar($first, $second) {
echo __FUNCTION__, " got $first and $second\n";
}
// Call the foobar() function with named arguments in non-positional order
call_user_func_array("foobar", array("second" => "two", "first" => "one"));
// Call the foobar() function with one named argument
call_user_func_array("foobar", array("foo", "second" => "bar"));
// Fatal error: Cannot use positional argument after named argument
call_user_func_array("foobar", array("first" => "one", "bar"));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
foobar got one and two
foobar got foo and bar
Fatal error: Uncaught Error: Cannot use positional argument after named argument
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
&note.func-callback-exceptions;
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>call_user_func</function></member>
<member><methodname>ReflectionFunction::invokeArgs</methodname></member>
<member><methodname>ReflectionMethod::invokeArgs</methodname></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
-->