mirror of
https://github.com/php/doc-pl.git
synced 2026-03-24 07:02:07 +01:00
151 lines
3.8 KiB
XML
151 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: 9e0f03ac354d797d1d16c0fcc1663e5e170f2727 Maintainer: leszek Status: ready -->
|
|
<!-- $Revision$ -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.array-merge-recursive">
|
|
<refnamediv>
|
|
<refname>array_merge_recursive</refname>
|
|
<refpurpose>Łączy dwie lub więcej tablic rekurencyjnie</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> łączy elementy jednej lub
|
|
więcej tablic tak, że wartości jednej tablicy są dopisywane na koniec
|
|
poprzedniej. Zwracana jest tablica wynikowa.
|
|
</para>
|
|
<para>
|
|
Jeśli wejściowe tablice mają jakieś klucze tekstowe, to wartości dla
|
|
tych kluczy są łączone w tablicę, co jest robione rekurencyjnie,
|
|
a więc jeśli jedną z tych wartości jest tablica,
|
|
funkcja połączy ją z odpowiadającą jej wartością z innej tablicy.
|
|
Jednakże jeśli tablice mają takie same klucze liczbowe, późniejsza
|
|
wartość nie nadpisze początkowej wartości, lecz zostanie dopisana na koniec.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>arrays</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Dowolna ilość tablic do rekurencyjnego połączenia.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Tablicę wartości wynikającą z połączenia przekazanych argumentów.
|
|
Jeżeli została wywołana bez żadnych argumentów, zwracana jest pusta tablica.
|
|
</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>
|
|
Ta funkcja może być teraz wywołana bez żadnych parametrów.
|
|
Wcześniej wymagany był przynajmniej jeden parametr.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Przykład użycia <function>array_merge_recursive</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$tbl1 = array ("kolor" => array ("ulubiony" => "czerwony"), 5);
|
|
$tbl2 = array (10, "kolor" => array ("ulubiony" => "zielony", "niebieski"));
|
|
$wynik = array_merge_recursive($tbl1, $tbl2);
|
|
print_r($wynik);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[kolor] => Array
|
|
(
|
|
[ulubiony] => Array
|
|
(
|
|
[0] => czerwony
|
|
[1] => zielony
|
|
)
|
|
|
|
[0] => niebieski
|
|
)
|
|
|
|
[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
|
|
-->
|