Write a PHP script to do a multi-dimensional difference, i.e. returns values of the first array that are not in the second array
- برمجة بي اتش بي
- 2021-09-09
- mhanasmh00489829403
الأجوبة
<?php
$color1 = array( array('Red', 80), array('Green', 70), array('white', 60) );
$color2 = array( array('Green', 70), array('Black', 95) );
$color = array_udiff($color1, $color2, create_function(
'$a,$b', 'return strcmp( implode("", $a), implode("", $b) ); ')
);
print_r($color);
?>
Sample Output:
Array
(
[0] => Array
(
[0] => Red
[1] => 80
)
[2] => Array
(
[0] => white
[1] => 60
)
)أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال