1
0
mirror of https://github.com/php/doc-de.git synced 2026-03-26 08:12:07 +01:00
Files
archived-doc-de/reference/array/functions/array-reduce.xml
Nilgün Belma Bugüner fd2f75e1a8 changed EN-Revision tag as cvs2svn
fixed svn properties

git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@283886 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-11 22:21:12 +00:00

92 lines
2.7 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
<!-- EN-Revision: n/a Maintainer: nobody Status: ready -->
<!-- CREDITS: tom -->
<refentry xml:id="function.array-reduce" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>array_reduce</refname>
<refpurpose>Iterative Reduktion eines Arrays zu einem Wert mittels einer
Callback Funktion</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>array_reduce</methodname>
<methodparam><type>array</type><parameter>input</parameter></methodparam>
<methodparam><type>callback</type><parameter>function</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>initial</parameter></methodparam>
</methodsynopsis>
<para>
<function>array_reduce</function> wendet die Funktion
<parameter>function</parameter> iterativ bei den Elementen des Arrays
<parameter>input</parameter> so an, dass das Array auf einen einzigen
Wert reduziert wird. Ist der optionale Parameter
<parameter>intial</parameter> angegeben, wird er am Beginn des Prozesses
benutzt oder als Resultat verwendet, sollte das Array leer sein.
Falls das Array leer ist und <parameter>initial</parameter> nicht
angegeben wurde, so wird <function>array_reduce</function> &null;
zurückgeben.
</para>
<para>
<example>
<title><function>array_reduce</function></title>
<programlisting role="php">
<![CDATA[
<?php
function rsum($v, $w)
{
$v += $w;
return $v;
}
function rmul($v, $w)
{
$v *= $w;
return $v;
}
$a = array(1, 2, 3, 4, 5);
$x = array();
$b = array_reduce($a, "rsum");
$c = array_reduce($a, "rmul", 10);
$d = array_reduce($x, "rsum", 1);
?>
]]>
</programlisting>
</example>
</para>
<para>
Hier enthält <varname>$b</varname> <literal>15</literal>,
<varname>$c</varname> <literal>1200</literal> (= 10*1*2*3*4*5),
und <varname>$d</varname> enthält <literal>1</literal>.
</para>
<para>
Siehe auch <function>array_filter</function>,
<function>array_map</function>,
<function>array_unique</function>, und
<function>array_count_values</function>.
</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:"../../../../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
-->