> 백엔드 개발 > PHP 튜토리얼 > 有一个二维数组,我想取出其中一个key的集合,并计算总和

有一个二维数组,我想取出其中一个key的集合,并计算总和

WBOY
풀어 주다: 2016-06-23 13:41:34
원래의
973명이 탐색했습니다.

这是二维数组,我想去到total的集合,并计算total的总值,请问怎么实现

array(         [0] => Array ( 		[id] => 5 		[title] => 相宜本草八倍凝水霜50g 保湿补水滋润美白面霜乳液男女正品护肤品 		[images] => uploadfile/goods/2015-01/1420774763.jpg 		[price] => 39.0 		[num] => 1 		[total] => 39 		[wlmoney] => 0 		[url] => http://localhost/dkyq/goods.php?id=12 ) 				        [1] => Array ( 		[id] => 4 		[title] => 美肤宝正品 水份源洁面膏洁面乳75ml 洗面奶清洁爽肤 补水保湿 		[images] => uploadfile/goods/2015-01/1420773795.jpg 		[price] => 12.0 		[num] => 1 		[total] => 12 		[wlmoney] => 0 		[url] => http://localhost/dkyq/goods.php?id=11 		) );
로그인 후 복사


回复讨论(解决方案)

$ar = array (  0 => array (    'id' => '5',    'title' => '相宜本草八倍凝水霜50g 保湿补水滋润美白面霜乳液男女正品护肤品',    'images' => 'uploadfile/goods/2015-01/1420774763.jpg',    'price' => '39.0',    'num' => '1',    'total' => '39',    'wlmoney' => '0',    'url' => 'http://localhost/dkyq/goods.php?id=12',  ),  1 => array (    'id' => '4',    'title' => '美肤宝正品 水份源洁面膏洁面乳75ml 洗面奶清洁爽肤 补水保湿',    'images' => 'uploadfile/goods/2015-01/1420773795.jpg',    'price' => '12.0',    'num' => '1',    'total' => '12',    'wlmoney' => '0',    'url' => 'http://localhost/dkyq/goods.php?id=11',  ),);$total = 0;foreach($ar as $r) $total += $r['total'];echo $total; //51
로그인 후 복사

$arr = array(   array(    'id' => '5',    'title' => '相宜本草八倍凝水霜50g 保湿补水滋润美白面霜乳液男女正品护肤品',    'images' => 'uploadfile/goods/2015-01/1420774763.jpg',    'price' => '39.0',    'num' => '1',    'total' => '39',    'wlmoney' => '0',    'url' => 'http://localhost/dkyq/goods.php?id=12',  ),  array(    'id' => '4',    'title' => '美肤宝正品 水份源洁面膏洁面乳75ml 洗面奶清洁爽肤 补水保湿',    'images' => 'uploadfile/goods/2015-01/1420773795.jpg',    'price' => '12.0',    'num' => '1',    'total' => '12',    'wlmoney' => '0',    'url' => 'http://localhost/dkyq/goods.php?id=11',  ));$total = 0;foreach($arr as $v){    $total += $v['total'];}echo $total;
로그인 후 복사


total = 51

不好意思了,因为版主回答的比较早,后面我只能少给点了,希望不要介意呀

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿