Files
doc-fr/reference/array/functions/array-reduce.xml
Jean-Sébastien Goupil dcbd76b0cc sync with EN
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@222717 c90b9560-bf6c-de11-be94-00142212c4b1
2006-11-03 12:03:58 +00:00

88 lines
2.5 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.16 $ -->
<!-- EN-Revision: 1.10 Maintainer: dams Status: ready -->
<!-- Reviewed: no -->
<refentry id="function.array-reduce">
<refnamediv>
<refname>array_reduce</refname>
<refpurpose>Réduit itérativement un tableau</refpurpose>
</refnamediv>
<refsect1>
&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> applique itérativement
la fonction <parameter>function</parameter> aux éléments du
tableau <parameter>input</parameter>, de manière à réduire le
tableau à une valeur simple. Si l'argument optionnel
<parameter>initial</parameter> est disponible, il sera utilisé pour
initialiser le processus, ou bien comme valeur finale si le
tableau est vide.
Si le tableau est vide et le paramètre <parameter>initial</parameter>
n'est pas passé, <function>array_reduce</function> retourne &null;.
</para>
<para>
<example>
<title>Exemple avec <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>
Dans cet exemple, <varname>$b</varname> contiendra <literal>15</literal>,
<varname>$c</varname> contiendra <literal>1200</literal> (= 10*1*2*3*4*5),
et <varname>$d</varname> contiendra &one;.
</para>
<para>
Voir aussi
<function>array_filter</function>,
<function>array_map</function>,
<function>array_unique</function> et
<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
-->