Reorganize a two-dimensional array into an array with the same key values

WBOY
Release: 2016-08-08 09:23:21
Original
1112 people have browsed it
Array(    [0] => ArrayShanghai         )     [1] => Array                                                                                                                                     )     [2] => ArrayShanghai         )     [3] => Array                                                                                                      )     [4] => Array             (                                                                                                                  ) )According to the same title, reassemble the array into: Array(    [0] => Array        (            [title] => 111            [name] => 上海,杭州        )     [1] => Array        (                                                                                  ) )

实现代码:

function array_group_concat($ar, $field, $group_by) {

  $res = array();
  foreach($ar as $row) {
    $g = $row[$group_by];
    if(isset($res[$g])) $res[$g][$f
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!