header('Content-type: text/html; charset=utf-8');//以下是原始数组$array = array( 0=>array( 0=>array( 'text' => '体育', 'children' => array( 0=>array( 'text' => '篮球', 'grade' => '1' ), 1=>array( 'text' => '足球', 'grade' => '3' ) ) ), 1=>array( 'text' => '音乐', 'children' => array( 0=>array( 'text' => '唱歌', 'children' => array( 0=>array( 'text' => '儿歌三百首', 'grade' => '1' ) ) ), 1=>array( 'text' => '跳舞', 'grade' => '3' ) ) ) ), 1=>array( 0=>array( 'text' => '体育', 'children' => array( 0=>array( 'text' => '篮球', 'grade' => '2' ), 1=>array( 'text' => '排球', 'grade' => '5' ) ) ), 1=>array( 'text' => '音乐', 'children' => array( 0=>array( 'text' => '唱歌', 'children' => array( 0=>array( 'text' => '儿歌三百首', 'grade' => '4' ) ) ) ) ) ),);//要求:递归遍历原始多维数组,将重复键值合并并累加grade值,以及记录重复次数。如:体育->篮球,经过处理后grade值为1+2=3,重复个数则为2(注:多维数组层级不定)//以下是想要的到的结果$newarray = array( 0=>array( 0=>array( 'text' => '体育', 'children' => array( 0=>array( 'text' => '篮球', 'grade' => '3', 'count' => '2' ), 1=>array( 'text' => '足球', 'grade' => '3', 'count' => '1' ), 2=>array( 'text' => '排球', 'grade' => '5', 'count' => '1' ) ) ), 1=>array( 'text' => '音乐', 'children' => array( 0=>array( 'text' => '唱歌', 'children' => array( 0=>array( 'text' => '儿歌三百首', 'grade' => '5', 'count' => '2' ) ) ), 1=>array( 'text' => '跳舞', 'grade' => '3', 'count' => '1' ) ) ) ));
回复讨论(解决方案)
貌似有性,等高手解决了,学习学习
不需要递归吧。双重循环完全可以搞定。
这就是基础了
不需要递归吧。双重循环完全可以搞定。
但数组的层级是不一定的,实际上有多大5至6级
不需要递归吧。双重循环完全可以搞定。
但数组的层级是不一定的,实际上有多大5至6级
但数组的层级是不一定的,实际上有多达5至6级
你的数据是从哪里来的?
正着做很简单,像你这样反着做是有些难度的
别着急,有空帮你看看
昨天晚上研究这个题目6个小时,最后抱着参考手册找各种数组函数,结果还是没做出来。
你的数据是从哪里来的?
正着做很简单,像你这样反着做是有些难度的
别着急,有空帮你看看
多谢版主
昨天晚上研究这个题目6个小时,最后抱着参考手册找各种数组函数,结果还是没做出来。
不才,我花了2天时间也还是没能找着出路
给个思路:先降维
function untree($ar, $key='children', $deep=0, $paren='') { $res = array(); foreach((array)$ar as $v) { if(is_numeric(key($v))) { $res = array_merge($res, untree($v, $key, $deep+1, $paren)); continue; } $v['deep'] = $deep; $v['paren'] = $paren; if(isset($v[$key])) { $t = $v[$key]; $pa = $v['text']; unset($v[$key]); } $res[] = $v; if(! empty($t)) $res = array_merge($res, untree($t, $key, $deep+1, $pa)); } return $res;}print_r(untree($array));
得
Array
(
[0] => Array
(
[text] => 体育
[deep] => 1
[paren] =>
)
[1] => Array
(
[text] => 篮球
[grade] => 1
[deep] => 2
[paren] => 体育
)
[2] => Array
(
[text] => 足球
[grade] => 3
[deep] => 2
[paren] => 体育
)
[3] => Array
(
[text] => 音乐
[deep] => 1
[paren] =>
)
[4] => Array
(
[text] => 唱歌
[deep] => 2
[paren] => 音乐
)
[5] => Array
(
[text] => 儿歌三百首
[grade] => 1
[deep] => 3
[paren] => 唱歌
)
[6] => Array
(
[text] => 跳舞
[grade] => 3
[deep] => 2
[paren] => 音乐
)
[7] => Array
(
[text] => 儿歌三百首
[grade] => 1
[deep] => 3
[paren] => 唱歌
)
[8] => Array
(
[text] => 体育
[deep] => 1
[paren] =>
)
[9] => Array
(
[text] => 篮球
[grade] => 2
[deep] => 2
[paren] => 体育
)
[10] => Array
(
[text] => 排球
[grade] => 5
[deep] => 2
[paren] => 体育
)
[11] => Array
(
[text] => 音乐
[deep] => 1
[paren] =>
)
[12] => Array
(
[text] => 唱歌
[deep] => 2
[paren] => 音乐
)
[13] => Array
(
[text] => 儿歌三百首
[grade] => 4
[deep] => 3
[paren] => 唱歌
)
)
你的数据是从哪里来的?
正着做很简单,像你这样反着做是有些难度的
别着急,有空帮你看看
数据是通过另一个封装函数返回的(我不能修改封装函数)
给个思路:先降维
function untree($ar, $key='children', $deep=0, $paren='') { $res = array(); foreach((array)$ar as $v) { if(is_numeric(key($v))) { $res = array_merge($res, untree($v, $key, $deep+1, $paren)); continue; } $v['deep'] = $deep; $v['paren'] = $paren; if(isset($v[$key])) { $t = $v[$key]; $pa = $v['text']; unset($v[$key]); } $res[] = $v; if(! empty($t)) $res = array_merge($res, untree($t, $key, $deep+1, $pa)); } return $res;}print_r(untree($array));
得
Array
(
[0] => Array
(
[text] => 体育
[deep] => 1
[paren] =>
)
[1] => Array
(
[text] => 篮球
[grade] => 1
[deep] => 2
[paren] => 体育
)
[2] => Array
(
[text] => 足球
[grade] => 3
[deep] => 2
[paren] => 体育
)
[3] => Array
(
[text] => 音乐
[deep] => 1
[paren] =>
)
[4] => Array
(
[text] => 唱歌
[deep] => 2
[paren] => 音乐
)
[5] => Array
(
[text] => 儿歌三百首
[grade] => 1
[deep] => 3
[paren] => 唱歌
)
[6] => Array
(
[text] => 跳舞
[grade] => 3
[deep] => 2
[paren] => 音乐
)
[7] => Array
(
[text] => 儿歌三百首
[grade] => 1
[deep] => 3
[paren] => 唱歌
)
[8] => Array
(
[text] => 体育
[deep] => 1
[paren] =>
)
[9] => Array
(
[text] => 篮球
[grade] => 2
[deep] => 2
[paren] => 体育
)
[10] => Array
(
[text] => 排球
[grade] => 5
[deep] => 2
[paren] => 体育
)
[11] => Array
(
[text] => 音乐
[deep] => 1
[paren] =>
)
[12] => Array
(
[text] => 唱歌
[deep] => 2
[paren] => 音乐
)
[13] => Array
(
[text] => 儿歌三百首
[grade] => 4
[deep] => 3
[paren] => 唱歌
)
)
其实原始数组有记录id ,pid值的
那你就把数据特完整了
$array=array( '0' => array( '0' => array( 'id' => 87073074, 'pid' => 0, 'text' => '白田最新??', 'children' => array( '0' => array( 'id' => 67852256, 'pid' => 87073074, 'text' => '??知?', 'children' => array( '0' => array( 'id' => 44740741, 'pid' => 67852256, 'text' => '?能?健康', 'children' => array( '0' => array( 'id' => 66256396, 'pid' => 44740741, 'text' => '小肌肉', 'children' => array( '0' => array( 'id' => 71852852, 'pid' => 66256396, 'text' => '掌握?手??能力', 'children' => array( '0' => array( 'id' => 84741741, 'text' => '能摺?包', 'grade' => 1 ) ) ) ) ) ) ), '1' => array( 'id' => 32518528, 'pid' => 67852256, 'text' => '?文', 'children' => array( '0' => array( 'id' => 18185185, 'pid' => 32518528, 'text' => '?', 'children' => array( '0' => array( 'id' => 35256896, 'pid' => 18185185, 'text' => '能理解故事?容要?', 'children' => array( '0' => array( 'id' => 69295296, 'text' => '能理解故事?容要?', 'grade' => 1 ) ) ), '1' => array( 'id' => 54740741, 'pid' => 18185185, 'text' => '能\'?\',指示?行??和活?', 'children' => array( '0' => array( 'id' => 93629639, 'text' => '能\'?\',指示?行活?和??', 'grade' => 1 ) ) ) ) ) ) ) ) ) ) ) ), '1' => array( '0' => array( 'id' => 87073074, 'pid' => 0, 'text' => '白田最新??', 'children' => array( '0' => array( 'id' => 67852256, 'pid' => 87073074, 'text' => '??知?', 'children' => array( '0' => array( 'id' => 44740741, 'pid' => 67852256, 'text' => '?能?健康', 'children' => array( '0' => array( 'id' => 66256396, 'pid' => 44740741, 'text' => '小肌肉', 'children' => array( '0' => array( 'id' => 71852852, 'pid' => 66256396, 'text' => '掌握?手??能力', 'children' => array( '0' => array(

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

使用依赖注入(DI)的原因是它促进了代码的松耦合、可测试性和可维护性。1)使用构造函数注入依赖,2)避免使用服务定位器,3)利用依赖注入容器管理依赖,4)通过注入依赖提高测试性,5)避免过度注入依赖,6)考虑DI对性能的影响。

phperformancetuningiscialbecapeitenhancesspeedandeffice,whatevitalforwebapplications.1)cachingwithapcureduccureducesdatabaseloadprovesrovesponsemetimes.2)优化

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

TOOPTIMIZEPHPAPPLICITIONSFORPERSTORANCE,USECACHING,数据库imization,opcodecaching和SererverConfiguration.1)InlumentCachingWithApcutCutoredSatfetchTimes.2)优化的atabasesbasesebasesebasesbasesbasesbaysbysbyIndexing,BeallancingAndWriteExing

依赖性注射inphpisadesignpatternthatenhancesFlexibility,可检验性和ManiaginabilybyByByByByByExternalDependencEctenceScoupling.itallowsforloosecoupling,EasiererTestingThroughMocking,andModularDesign,andModularDesign,butquirscarecarefulscarefullsstructoringDovairing voavoidOverOver-Inje

PHP性能优化可以通过以下步骤实现:1)在脚本顶部使用require_once或include_once减少文件加载次数;2)使用预处理语句和批处理减少数据库查询次数;3)配置OPcache进行opcode缓存;4)启用并配置PHP-FPM优化进程管理;5)使用CDN分发静态资源;6)使用Xdebug或Blackfire进行代码性能分析;7)选择高效的数据结构如数组;8)编写模块化代码以优化执行。

opcodecachingsimplovesphperforvesphpermance bycachingCompiledCode,reducingServerLoadAndResponSetimes.1)itstorescompiledphpcodeinmemory,bypassingparsingparsingparsingandcompiling.2)useopcachebachebachebachebachebachebachebysettingparametersinphametersinphp.ini,likeememeryconmorysmorysmeryplement.33)


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

SublimeText3 英文版
推荐:为Win版本,支持代码提示!