mirror of
https://github.com/php/doc-pl.git
synced 2026-03-29 10:32:12 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/pl/trunk@314597 c90b9560-bf6c-de11-be94-00142212c4b1
89 lines
2.6 KiB
XML
89 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- EN-Revision: n/a Maintainer: leszek Status: ready -->
|
|
<!-- $Revision$ -->
|
|
<refentry xml:id="function.array-reduce" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>array_reduce</refname>
|
|
<refpurpose>Iteracyjnie zredukuj tablicę do pojedyńczej wartości używając funkcji zwrotnej</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Opis</title>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>array_reduce</methodname>
|
|
<methodparam><type>array</type><parameter>wejście</parameter></methodparam>
|
|
<methodparam><type>callback</type><parameter>funkcja_zwrotna</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>początek</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>array_reduce</function> iteracyjnie stosuje funkcję
|
|
<parameter>funkcja_zwrotna</parameter> na każdym elemencie tablicy
|
|
<parameter>wejście</parameter> aby zredukować tablicę to pojedyńczej
|
|
wartości. Jeśli podany został opcjonalny parametr <parameter>początek
|
|
</parameter>, będzie on użyty na początku procesu, lub jako zwracana
|
|
wartość jeśli tablica jest pusta.
|
|
Jeśli tablica jest pusta, a parametr <parameter>początek</parameter> nie
|
|
zostanie przekazany, <function>array_reduce</function> zwraca &null;.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Przykład użycia <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>
|
|
Po wykonaniu powyższego kodu zmienna <varname>$b</varname> będzie
|
|
zawierała <literal>15</literal>, <varname>$c</varname>
|
|
<literal>1200</literal> (= 10*1*2*3*4*5) a
|
|
<varname>$d</varname> containing <literal>1</literal>.
|
|
</para>
|
|
<para>
|
|
Patrz także: <function>array_filter</function>,
|
|
<function>array_map</function>, <function>array_unique</function> i
|
|
<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:"~/.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
|
|
-->
|