多维数组去重

1.array_unique($students, SORT_REGULAR)
2.
$students = array_map(
'unserialize',
array_unique(
array_map(
'serialize',
$students
)
)
);
posted @ 2017-12-04 15:30  2147483647  阅读(201)  评论(1编辑  收藏  举报