mirror of
https://github.com/php/doc-ja.git
synced 2026-03-25 15:42:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@134661 c90b9560-bf6c-de11-be94-00142212c4b1
85 lines
2.4 KiB
XML
85 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- sync: 1.6 -->
|
|
<refentry id="function.array-reduce">
|
|
<refnamediv>
|
|
<refname>array_reduce</refname>
|
|
<refpurpose>
|
|
コールバック関数を用いて配列を普通の値に変更することにより、
|
|
配列を再帰的に減らす
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>説明</title>
|
|
<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>は、配列<parameter>input</parameter>
|
|
の各要素に<parameter>function</parameter>関数を繰り返し適用し、
|
|
配列を一つの値に減らします。オプション<parameter>intial</parameter>
|
|
が利用可能な場合、処理の最初で使用されたり、配列が空の場合の最終結果
|
|
として使用されます。
|
|
</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>
|
|
これにより、<varname>$b</varname>の値は<literal>15</literal>
|
|
となり、<varname>$c</varname>の値は
|
|
<literal>1200</literal> (= 1*2*3*4*5*10)、そして、
|
|
<varname>$d</varname>の値は<literal>1</literal>となります。
|
|
</para>
|
|
<para>
|
|
<function>array_filter</function>,
|
|
<function>array_map</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
|
|
-->
|