mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 15:32:36 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@337003 c90b9560-bf6c-de11-be94-00142212c4b1
267 lines
7.4 KiB
XML
267 lines
7.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: a44a1e0b7918846659a3c91013855d2c3d674fb9 Maintainer: seros Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xml:id="function.array-udiff" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>array_udiff</refname>
|
|
<refpurpose>Computa la diferencia entre arrays, usando una llamada de
|
|
retorno para la comparación de datos</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>array_udiff</methodname>
|
|
<methodparam><type>array</type><parameter>array1</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>array2</parameter></methodparam>
|
|
<methodparam choice="opt"><type>array</type><parameter>...</parameter></methodparam>
|
|
<methodparam><type>callable</type><parameter>value_compare_func</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Computa la diferencia de los arrays usando una función tipo llamada de
|
|
retorno para la comparación de datos. Esto difiere de
|
|
<function>array_diff</function>, la cual usa una función interna para la
|
|
comparación de datos.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>array1</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El primer array.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>array2</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El segundo array
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>value_compare_func</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
La función llamada de retorno para la comparación.
|
|
</para>
|
|
<para>
|
|
&return.callbacksort;
|
|
</para>
|
|
&callback.cmp;
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve un array que contiene todos los valores de <parameter>array1</parameter>
|
|
que no están presentes en ninguno de los otros argumentos.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Ejemplo de <function>array_udiff</function> usando objetos de stdClass</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// Arrays a comparar
|
|
$array1 = array(new stdclass, new stdclass,
|
|
new stdclass, new stdclass,
|
|
);
|
|
|
|
$array2 = array(
|
|
new stdclass, new stdclass,
|
|
);
|
|
|
|
// Establecer algunas propiedades para cada objeto
|
|
$array1[0]->width = 11; $array1[0]->height = 3;
|
|
$array1[1]->width = 7; $array1[1]->height = 1;
|
|
$array1[2]->width = 2; $array1[2]->height = 9;
|
|
$array1[3]->width = 5; $array1[3]->height = 7;
|
|
|
|
$array2[0]->width = 7; $array2[0]->height = 5;
|
|
$array2[1]->width = 9; $array2[1]->height = 2;
|
|
|
|
function compare_by_area($a, $b) {
|
|
$areaA = $a->width * $a->height;
|
|
$areaB = $b->width * $b->height;
|
|
|
|
if ($areaA < $areaB) {
|
|
return -1;
|
|
} elseif ($areaA > $areaB) {
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
print_r(array_udiff($array1, $array2, 'compare_by_area'));
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => stdClass Object
|
|
(
|
|
[width] => 11
|
|
[height] => 3
|
|
)
|
|
|
|
[1] => stdClass Object
|
|
(
|
|
[width] => 7
|
|
[height] => 1
|
|
)
|
|
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Ejemplo de <function>array_udiff</function> usando objetos de DateTime</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
class MyCalendar {
|
|
public $free = array();
|
|
public $booked = array();
|
|
|
|
public function __construct($week = 'now') {
|
|
$start = new DateTime($week);
|
|
$start->modify('Monday this week midnight');
|
|
$end = clone $start;
|
|
$end->modify('Friday this week midnight');
|
|
$interval = new DateInterval('P1D');
|
|
foreach (new DatePeriod($start, $interval, $end) as $freeTime) {
|
|
$this->free[] = $freeTime;
|
|
}
|
|
}
|
|
|
|
public function bookAppointment(DateTime $date, $note) {
|
|
$this->booked[] = array('date' => $date->modify('midnight'), 'note' => $note);
|
|
}
|
|
|
|
public function checkAvailability() {
|
|
return array_udiff($this->free, $this->booked, array($this, 'customCompare'));
|
|
}
|
|
|
|
public function customCompare($free, $booked) {
|
|
if (is_array($free)) $a = $free['date'];
|
|
else $a = $free;
|
|
if (is_array($booked)) $b = $booked['date'];
|
|
else $b = $booked;
|
|
if ($a == $b) {
|
|
return 0;
|
|
} elseif ($a > $b) {
|
|
return 1;
|
|
} else {
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Crear un calendario para citas semanales
|
|
$myCalendar = new MyCalendar;
|
|
|
|
// Anotar varias citas para esta semana
|
|
$myCalendar->bookAppointment(new DateTime('Monday this week'), "Cleaning GoogleGuy's apartment.");
|
|
$myCalendar->bookAppointment(new DateTime('Wednesday this week'), "Going on a snowboarding trip.");
|
|
$myCalendar->bookAppointment(new DateTime('Friday this week'), "Fixing buggy code.");
|
|
|
|
// Comprobar los días disponibles comparando las fechas de $booked con las de $free
|
|
echo "I'm available on the following days this week...\n\n";
|
|
foreach ($myCalendar->checkAvailability() as $free) {
|
|
echo $free->format('l'), "\n";
|
|
}
|
|
echo "\n\n";
|
|
echo "I'm busy on the following days this week...\n\n";
|
|
foreach ($myCalendar->booked as $booked) {
|
|
echo $booked['date']->format('l'), ": ", $booked['note'], "\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
I'm available on the following days this week...
|
|
|
|
Tuesday
|
|
Thursday
|
|
|
|
|
|
I'm busy on the following days this week...
|
|
|
|
Monday: Cleaning GoogleGuy's apartment.
|
|
Wednesday: Going on a snowboarding trip.
|
|
Friday: Fixing buggy code.
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="notes">
|
|
&reftitle.notes;
|
|
<note>
|
|
<simpara>
|
|
Por favor note que esta función sólo analiza una dimensión de un array
|
|
n-dimensional. Por supuesto, puede analizar dimensiones más profundas
|
|
usando <literal>array_udiff($array1[0], $array2[0], "data_compare_func");</literal>.
|
|
</simpara>
|
|
</note>
|
|
</refsect1>
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>array_diff</function></member>
|
|
<member><function>array_diff_assoc</function></member>
|
|
<member><function>array_diff_uassoc</function></member>
|
|
<member><function>array_udiff_assoc</function></member>
|
|
<member><function>array_udiff_uassoc</function></member>
|
|
<member><function>array_intersect</function></member>
|
|
<member><function>array_intersect_assoc</function></member>
|
|
<member><function>array_uintersect</function></member>
|
|
<member><function>array_uintersect_assoc</function></member>
|
|
<member><function>array_uintersect_uassoc</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
|
|
-->
|