mirror of
https://github.com/php/doc-ja.git
synced 2026-03-24 07:02:08 +01:00
We markup variadic parameters with the `rep=repeat` standard DocBook attribute of `<methodparam>`, and use proper variable names instead of using the old pseudo variable name `...`. git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@351140 c90b9560-bf6c-de11-be94-00142212c4b1
154 lines
4.0 KiB
XML
154 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 9e0f03ac354d797d1d16c0fcc1663e5e170f2727 Maintainer: hirokawa Status: ready -->
|
|
<!-- CREDITS: shimooka,mumumu -->
|
|
<refentry xml:id="function.array-merge-recursive" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>array_merge_recursive</refname>
|
|
<refpurpose>一つ以上の配列を再帰的にマージする</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>array_merge_recursive</methodname>
|
|
<methodparam rep="repeat"><type>array</type><parameter>arrays</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>array_merge_recursive</function> は、
|
|
一つ以上の配列の要素をマージし、
|
|
前の配列の最後にもう一つの配列の値を追加します。
|
|
マージした後の配列を返します。
|
|
</para>
|
|
<para>
|
|
入力配列が同じ文字列のキーを有している場合、
|
|
マージした後の配列ではこれらのキーの値がひとつにまとめられます。
|
|
この処理は再帰的に行われます。
|
|
このため、値の一つが配列自体を指している場合、
|
|
この関数は別の配列の対応するエントリもマージします。
|
|
しかし、配列が同じ数値キーを有している場合、
|
|
後の値は元の値を上書せず、追加されます。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>arrays</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
再帰的にマージしていく配列の可変リスト。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
すべての引数の配列をマージした結果の配列を返します。
|
|
引数なしで呼び出された場合、空の配列を返します。
|
|
</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>7.4.0</entry>
|
|
<entry>
|
|
この関数は、引数なしでも呼び出せるようになりました。
|
|
このバージョンより前では、少なくともひとつの引数が必須でした。
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>array_merge_recursive</function> の例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$ar1 = array("color" => array("favorite" => "red"), 5);
|
|
$ar2 = array(10, "color" => array("favorite" => "green", "blue"));
|
|
$result = array_merge_recursive($ar1, $ar2);
|
|
print_r($result);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen role="php">
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[color] => Array
|
|
(
|
|
[favorite] => Array
|
|
(
|
|
[0] => red
|
|
[1] => green
|
|
)
|
|
|
|
[0] => blue
|
|
)
|
|
|
|
[0] => 5
|
|
[1] => 10
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>array_merge</function></member>
|
|
<member><function>array_replace_recursive</function></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
|
|
-->
|