Home  >  Article  >  Backend Development  >  php-怎样删除二维数组中相同的一位数组 并保持相同键名 求大神写个函数

php-怎样删除二维数组中相同的一位数组 并保持相同键名 求大神写个函数

WBOY
WBOYOriginal
2016-06-02 11:34:001077browse

php数组

Array
(
[0] => Array
(
[year] => 2013-2014
[term] => 1
[course_code] => 00008069
[course_name] => 咖啡世界
[course_nature] => 任意选修
[course_attribution] => 人文素养类
[credit] => 2.0
[point] => 4.1
[grade] => 91
[minor_tag] => 0
[makeup_grade] =>

[rebuild_grade] =>

[begin_college] => 旅游文化产业学院
[remark] =>

[rebuild_tag] => 0
[0] => 77
[1] => 2
)

<code>                    [1] => Array                            (                                    [year] => 2013-2014                                    [term] => 1                                    [course_code] => 00008069                                    [course_name] => 咖啡世界                                    [course_nature] => 任意选修                                    [course_attribution] => 人文素养类                                    [credit] => 2.0                                    [point] => 4.1                                    [grade] => 91                                    [minor_tag] => 0                                    [makeup_grade] =>                                      [rebuild_grade] =>                                      [begin_college] => 旅游文化产业学院                                    [remark] =>                                      [rebuild_tag] => 0                                    [0] => 77                                    [1] => 2                            )                    [2] => Array                            (                                    [year] => 2013-2014                                    [term] => 1                                    [course_code] => 00008069                                    [course_name] => 咖啡世界                                    [course_nature] => 任意选修                                    [course_attribution] => 人文素养类                                    [credit] => 2.0                                    [point] => 4.1                                    [grade] => 91                                    [minor_tag] => 0                                    [makeup_grade] =>                                      [rebuild_grade] =>                                      [begin_college] => 旅游文化产业学院                                    [remark] =>                                      [rebuild_tag] => 0                                    [0] => 77                                    [1] => 2                            )</code>

)

如上面 怎样让它变成
Array
(
[0] => Array
(
[year] => 2013-2014
[term] => 1
[course_code] => 00008069
[course_name] => 咖啡世界
[course_nature] => 任意选修
[course_attribution] => 人文素养类
[credit] => 2.0
[point] => 4.1
[grade] => 91
[minor_tag] => 0
[makeup_grade] =>

[rebuild_grade] =>

[begin_college] => 旅游文化产业学院
[remark] =>

[rebuild_tag] => 0
[0] => 77
[1] => 2
)
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn