三组数组 key( name , date)合并,其他 key 求和 求指导
2017-07-13 21:11:45 +08:00
ahkxhyl
$arr = [
[
'total'=> 2,
'name'=> '购物',
'date'=> '2017-06-20',
'count'=> 1
],
[
'total'=> 3,
'name'=> '购物',
'date'=> '2017-06-20',
'count'=> 1
],
];
$arr1 = [
[
'total'=> 2,
'name'=> '汽车',
'date'=> '2017-06-21',
'count'=> 1
],
[
'total'=> 3,
'name'=> '自行车',
'date'=> '2017-06-20',
'count'=> 1
],
];
$arr2 = [
[
'total'=> 2,
'name'=> '图片',
'date'=> '2017-06-21',
'count'=> 1
],
[
'total'=> 3,
'name'=> '自行车',
'date'=> '2017-06-20',
'count'=> 1
],
];
主要判断 name && date 的值是否相同 相同则合并同时对 total 和 count 求和,不同加入新数组,最后再组成一个 new array
求指导 怎么写!!
1 条回复
ahkxhyl
2017-07-14 09:26:04 +08:00
怎么请求删贴的 我自己解决
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/375172
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.