mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
155 lines
3.8 KiB
XML
155 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 9e0f03ac354d797d1d16c0fcc1663e5e170f2727 Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.array-merge-recursive">
|
|
<refnamediv>
|
|
<refname>array_merge_recursive</refname>
|
|
<refpurpose>Combina uno o varios arrays juntos, de manera recursiva</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> reúne los
|
|
elementos de dos o más arrays juntos, añadiendo los
|
|
elementos de uno a continuación de los elementos del anterior.
|
|
</para>
|
|
<para>
|
|
Si los arrays pasados como argumentos tienen las mismas claves
|
|
(strings), los valores son entonces reunidos en un array, de manera recursiva,
|
|
de forma que, si uno de estos valores es un array
|
|
en sí mismo, la función lo reunirá con los valores de
|
|
la entrada actual. Sin embargo, si dos arrays tienen la misma
|
|
clave numérica, el último valor no sobrescribirá
|
|
el anterior, sino que será añadido al final
|
|
del array.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>arrays</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Lista variable de arrays a reunir de manera recursiva.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Un array de valores resultantes de la fusión de los argumentos.
|
|
Si es llamada sin argumentos, devuelve un &array; vacío.
|
|
</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>
|
|
Esta función puede ahora ser llamada sin parámetros.
|
|
Anteriormente, al menos un parámetro era requerido.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Ejemplo con <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
|
|
-->
|