array_udiff
Calcule la différence entre deux tableaux en utilisant une fonction rappel
&reftitle.description;
arrayarray_udiff
arrayarray
arrayarrays
callablevalue_compare_func
Calcule la différence entre deux tableaux en utilisant une fonction rappel.
Cette fonction agit comme la fonction array_diff
qui utilise une fonction interne pour comparer les données.
&reftitle.parameters;
array
Le premier tableau.
arrays
Tableaux à comparer contre
value_compare_func
&sort.callback.description;
&sort.callback.description.presort;
&reftitle.returnvalues;
Retourne un tableau contenant toutes les valeurs du tableau
array qui ne sont pas présentes dans aucun
autre argument.
&reftitle.examples;
Exemple avec array_udiff en utilisant les objets stdClass
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'));
?>
]]>
&example.outputs;
stdClass Object
(
[width] => 11
[height] => 3
)
[1] => stdClass Object
(
[width] => 7
[height] => 1
)
)
]]>
Exemple avec array_udiff en utilisant des objets DateTime
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;
}
}
}
// Crée un calendrier pour les rendez-vous hébdomadaires
$myCalendar = new MyCalendar;
// Enregistre quelques rendez-vous pour cette semaine
$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.");
// Vérifie la disponibilité en jours, en comparant les dates $booked avec les dates $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";
}
?>
]]>
&example.outputs;
&reftitle.notes;
Il est à noter que cette fonction ne vérifie qu'une seule dimension d'un tableau
multidimensionnel. Il est possible de, bien sûr, tester une dimension
particulière en utilisant par exemple
array_udiff($array1[0], $array2[0],
"data_compare_func");.
&reftitle.seealso;
array_diff
array_diff_assoc
array_diff_uassoc
array_udiff_assoc
array_udiff_uassoc
array_intersect
array_intersect_assoc
array_uintersect
array_uintersect_assoc
array_uintersect_uassoc