search
HomeBackend DevelopmentPHP TutorialPHP calculates the sum based on an array key

数据类型:

{"game_id":"111","type":2,"num":504},{"game_id":"111","type":6,"num":8154},{"game_id":"111","type":41,"num":3426},{"game_id":"111","type":42,"num":45},{"game_id":"111","type":43,"num":1873}

需求:

把type=41 42 42的num相加 type 1 10相加

结果:

{"game_id":"111","type":2,"num":504},{"game_id":"111","type":6,"num":8154},{"game_id":"111","type":41,"num":5344}

code:

$str = '{"retCode":"0","retMsg":"成功","data":[{"game_id":"111","type":2,"num":504},{"game_id":"111","type":6,"num":8154},{"game_id":"111","type":41,"num":3426},{"game_id":"111","type":42,"num":45},{"game_id":"111","type":43,"num":1873},{"game_id":"119","type":1,"num":38},{"game_id":"119","type":2,"num":381},{"game_id":"119","type":6,"num":189},{"game_id":"119","type":10,"num":21},{"game_id":"120","type":2,"num":31},{"game_id":"120","type":6,"num":291},{"game_id":"120","type":41,"num":90},{"game_id":"120","type":43,"num":49},{"game_id":"127","type":1,"num":9},{"game_id":"127","type":2,"num":111},{"game_id":"127","type":6,"num":60},{"game_id":"129","type":1,"num":11},{"game_id":"129","type":2,"num":11},{"game_id":"129","type":6,"num":48},{"game_id":"129","type":10,"num":2},{"game_id":"130","type":6,"num":1},{"game_id":"137","type":2,"num":1},{"game_id":"139","type":2,"num":1387},{"game_id":"139","type":6,"num":3858},{"game_id":"139","type":10,"num":2358},{"game_id":"142","type":2,"num":32},{"game_id":"142","type":6,"num":948},{"game_id":"142","type":41,"num":330},{"game_id":"142","type":42,"num":3},{"game_id":"142","type":43,"num":47},{"game_id":"156","type":2,"num":11436},{"game_id":"156","type":6,"num":38135},{"game_id":"156","type":10,"num":22170},{"game_id":"165","type":6,"num":6},{"game_id":"165","type":41,"num":3},{"game_id":"165","type":43,"num":1},{"game_id":"50","type":2,"num":3},{"game_id":"8f093ab4ad19a509208a8104605c6e42","type":2,"num":281},{"game_id":"92","type":1,"num":26},{"game_id":"92","type":2,"num":186},{"game_id":"92","type":6,"num":153},{"game_id":"94","type":1,"num":538},{"game_id":"94","type":2,"num":3357},{"game_id":"94","type":6,"num":2847},{"game_id":"94","type":10,"num":74}]}';

$aaa =  json_decode($str, true);
$data = $aaa['data'];
$new_array = array();
$array1 = array(41,42,43);
$array2 = array(1,10);
foreach($data as $v){
	if(in_array($v['type'], $array2)){
		if(isset($new_array[$v['game_id']][$array2[0]]['num'])){
			$new_array[$v['game_id']][$array2[0]]['num'] += $v['num'];
		}  else {
			$new_array[$v['game_id']][$array2[0]]['num'] = $v['num'];
		}
	}elseif (in_array($v['type'], $array1)) {
		if(isset($new_array[$v['game_id']][$array1[0]]['num'])){
			 $new_array[$v['game_id']][$array1[0]]['num'] += $v['num'];
		}  else {
			 $new_array[$v['game_id']][$array1[0]]['num'] = $v['num'];
		}
	}else{
		 if(isset($new_array[$v['game_id']][$v['type']]['num'])){
			$new_array[$v['game_id']][$v['type']]['num'] += $v['num'];
		}  else {
			$new_array[$v['game_id']][$v['type']]['num'] = $v['num'];
		}
	}
}
foreach($new_array as $k1 => $v1) {
	foreach($v1 as $k2 => $v2) {
		$new[$k1][] = array(
			'game_id' => $k1,
			'type' => $k2,
			'num' => $v2['num']
		);
	}
}

以上就介绍了 php 根据某数组key计算和,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

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
Win11 Xbox Game Bar怎么彻底卸载掉?分享Xbox Game Bar卸载方法Win11 Xbox Game Bar怎么彻底卸载掉?分享Xbox Game Bar卸载方法Feb 10, 2024 am 09:21 AM

Win11XboxGameBar怎么彻底卸载掉?XboxGameBar是系统中自带的游戏平台,它提供了用于游戏录制、截图和社交功能的工具,不过很是占用内存,也不好卸载,一些小伙伴想要将它卸载掉,但是不这道怎么彻底卸载,下面就来为大家介绍一下吧。方法一、使用Windows终端1、按【Win+X】组合键,或【右键】点击任务栏上的【Windows开始菜单】,在打开的的菜单项中,选择【终端管理员】。2、用户账户控制窗口,你要允许此应用对你的设备进行更改吗?点击【是】。3、执行以下命令:Get-AppxP

Go中Type关键字有哪些用法Go中Type关键字有哪些用法Sep 06, 2023 am 09:58 AM

Go中Type关键字的用法有定义新的类型别名或者创建新的结构体类型。详细介绍:1、类型别名,使用“type”关键字可以为已有的类型创建别名,这种别名不会创建新的类型,只是为已有的类型提供一个新的名称,类型别名可以提高代码的可读性,使代码更加清晰;2、结构体类型,使用“type”关键字可以创建新的结构体类型,结构体是一种复合类型,可以用于定义包含多个字段的自定义类型等等。

解决Ubuntu挂载移动硬盘错误:未知的文件系统类型exfat解决Ubuntu挂载移动硬盘错误:未知的文件系统类型exfatJan 05, 2024 pm 01:18 PM

ubuntu挂载移动硬盘出现错误:mount:unknownfilesystemtype'exfat'处理方法如下:Ubuntu13.10或安装exfat-fuse:sudoapt-getinstallexfat-fuseUbuntu13.04或以下sudoapt-add-repositoryppa:relan/exfatsudoapt-getupdatesudoapt-getinstallfuse-exfatCentOSLinux挂载exfat格式u盘错误的解决方法CentOS中加载extfa

Black Myth: Wukong smashes the competition with 2.2 million Steam players mere hours after launch <sup style=\"font-size:0.5em;color:#999\" title=\"Black Myth Wukong smashes the compBlack Myth: Wukong smashes the competition with 2.2 million Steam players mere hours after launch <sup style=\"font-size:0.5em;color:#999\" title=\"Black Myth Wukong smashes the compAug 21, 2024 am 10:25 AM

The hype for Black Myth: Wukong has been felt globally as the game slowly crawled towards its launch date, and it didn't disappoint when it launched on August 20, having received a very warm welcome from the gaming community at large. After being onl

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code<form name="myform"

Linux类型命令Linux类型命令Mar 20, 2024 pm 05:06 PM

在本指南中,我们将学习更多关于Linux中的”type”命令。前提条件:要执行本指南中演示的步骤,您需要以下组件:正确配置的Linux系统。查看如何创建LinuxVM用于测试和学习目的。对命令行界面的基本理解Linux中的Type命令与其他Linux专用命令(例如:ls、chmod、shut、vi、grep、pwd等)不同,”type”命令是一个内置的Bash函数,它显示作为参数提供的命令类型的信息。$type除了Bash,其他炮弹(Zsh、Ksh等)还附带

注册Deepseek账号时,哪些信息是必填的?注册Deepseek账号时,哪些信息是必填的?Mar 12, 2025 pm 02:33 PM

必填信息:1、邮箱注册;2、手机号码注册;3、第三方社交平台注册。注册成功后通常还需要填写一些基本个人信息,如昵称、性别、生日等。

Square Enix shooter Foamstars to go free-to-play after haemorrhaging players following February releaseSquare Enix shooter Foamstars to go free-to-play after haemorrhaging players following February releaseAug 28, 2024 pm 01:09 PM

Square Enix's Foamstars initially launched to a very strong reception, reportedly beating out smash-hit Helldivers 2 on launch day — likely owing to its launch as part of the PS Plus monthly games program. However, that player count soon dropped stee

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool