php 基础问题二维数组求和 !

WBOY
Release: 2016-06-23 13:55:26
Original
1120 people have browsed it

数组:
$a = array(array("a"=>"aa","a1"=>1,"a2"=>1),array("a"=>"bb","a1"=>2,"a2"=>2),array("a"=>"cc","a1"=>3,"a2"=>3),array("a"=>"aa","a1"=>1,"a2"=>1),array("a"=>"bb","a1"=>5,"a2"=>5))
第一个键值相同的元素 求和 
结果
$r = array(array("a"=>"aa","a1"=>2,"a2"=>2),array("a"=>"bb","a1"=>7,"a2"=>7),array("a"=>"cc","a1"=>3,"a2"=>3));


回复讨论(解决方案)

$a = array(  array("a" => "aa", "a1" => 1, "a2" => 1),  array("a" => "bb", "a1" => 2, "a2" => 2),  array("a" => "cc", "a1" => 3, "a2" => 3),  array("a" => "aa", "a1" => 1, "a2" => 1),  array("a" => "bb", "a1" => 5, "a2" => 5),);$res = array();foreach($a as $r) {  if(! isset($res[$r['a']])) $res[$r['a']] = $r;  else {    $res[$r['a']]['a1'] += $r['a1'];    $res[$r['a']]['a2'] += $r['a2'];  }}print_r(array_values($res));
Copy after login
Array(    [0] => Array        (            [a] => aa            [a1] => 2            [a2] => 2        )    [1] => Array        (            [a] => bb            [a1] => 7            [a2] => 7        )    [2] => Array        (            [a] => cc            [a1] => 3            [a2] => 3        ))
Copy after login

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