Love beautiful code? We do too.
Hàm array_diff_uassoc() Compares array1 against array2 and returns the difference. Unlike array_diff() the array keys are used in the comparison.
Unlike array_diff_assoc() an user supplied callback function is used for the indices comparison, not internal function.
Dưới đây là cú pháp của hàm array_diff_uassoc() trong PHP:
array_diff_uassoc ( $array1, $array2 [, $array3..., callback $key_compare_func] );
Tham số
Trả về giá trị
Trả về tất cả đầu vào của array1 mà không có mặt trong mảng khác.
<?php
function key_compare_func($a, $b)
{
if ($a === $b) {
return 0;
}
return ($a > $b)? 1:-1;
}
$array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
$array2 = array("a" => "green", "yellow", "red");
$result = array_diff_uassoc($array1, $array2, "key_compare_func");
print_r($result);
?>
Lưu chương trình trên trong một file có tên là test.php trong htdocs, sau đó mở trình duyệt và gõ địa chỉ http://localhost:8080/test.php sẽ cho kết quả:
Xem thêm Hàm trong php
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời