foreach遍历父数组,然后遍历子数组,如何拼接父子数组
说明:parent array中含有唯一pid,pid通过调用M层获取子数组内容,要求parent数组和child数组拥有相同的key,然后合并成一起
code:
<code>foreach($parentArray as $v){ $a['id']=$v['pid']; $a['name'] =$v['name']; ... $array[] =$a; $childContent = $m->getChildContent($v['pid']); foreach($childContent as $v2){ $b['id']=$v2['cid']; $b['name']=$v2['cname']; ... $array2[]=$b; } } </code>
我想让输出这样的格式
<code>array[0]{ $array里的内容, $array2里的内容 } array[1]{ $array, $array2, } </code>
因为是无限分级,想将foreach遍历数组中第一个和child数组 组合成一起,做为一个数组,
最后输出样式:
parent父栏目
--child子栏目
parent父栏目
--child子栏目
parent父栏目
--child子栏目
.....
回复内容:
说明:parent array中含有唯一pid,pid通过调用M层获取子数组内容,要求parent数组和child数组拥有相同的key,然后合并成一起
code:
<code>foreach($parentArray as $v){ $a['id']=$v['pid']; $a['name'] =$v['name']; ... $array[] =$a; $childContent = $m->getChildContent($v['pid']); foreach($childContent as $v2){ $b['id']=$v2['cid']; $b['name']=$v2['cname']; ... $array2[]=$b; } } </code>
我想让输出这样的格式
<code>array[0]{ $array里的内容, $array2里的内容 } array[1]{ $array, $array2, } </code>
因为是无限分级,想将foreach遍历数组中第一个和child数组 组合成一起,做为一个数组,
最后输出样式:
parent父栏目
--child子栏目
parent父栏目
--child子栏目
parent父栏目
--child子栏目
.....
不知道你说的是不是跟无限分类类似的情况。
如果parent和child是放在同一个表(应该也是)
如果只有两层的话,我通常是这么做的
那么查询时按照pid排序
<code>ORDER BY `pid` ASC </code>
然后遍历数组
<code>$result = array(); foreach($data as $v) { if($v['pid'] == 0) { $result[$v['id']] = $v; continue; } $result[$v['pid']]['chlid'][] = $v; } var_dump($result); </code>
如果是需要三层例如
<code>array( array( 'id', 'pid', 'child' => array( array( 'id', 'pid', 'child' => array( ... ), ), ), ), ) </code>
这样的话,我觉得这种方式的有点自找麻烦了。
参考资料:http://www.cnblogs.com/yangmanyan/archive/2011/06/16/2082963.html
抱歉更新一下,从数据库查询出来的结果,哪怕字段类型是整型,查询出来也是字符串。
所以应该是$v['pid'] == 0
或者$v['pid'] === '0'
。
要转化成:O:27:"GuzzleHttp\Cookie\CookieJar":2:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
