无限级分类,级分类_PHP教程
无限级分类,级分类
public function getlist($pid = 0, &$result=array(), $spac = 0){<br> $spac += 2;<br> $list = M('liuyan')->where('pid='.$pid)->select();<br> foreach($list as $val){<br> $val['content'] = str_repeat('',$spac).$val['content'];<br> $result[] = $val;<br> $this->getlist($val['id'], $result, $spac);<br> }<br> return $result;<br>}
function
genTree(
$items
,
$id
=
'id'
,
$pid
=
'pid'
,
$son
=
'children'
){
$tree
=
array
();
//格式化的树
$tmpMap
=
array
();
//临时扁平数据
foreach
(
$items
as
$item
) {
$tmpMap
[
$item
[
$id
]] =
$item
;
}
foreach
(
$items
as
$item
) {
if
(isset(
$tmpMap
[
$item
[
$pid
]])) {
$tmpMap
[
$item
[
$pid
]][
$son
][] = &
$tmpMap
[
$item
[
$id
]];
}
else
{
$tree
[] = &
$tmpMap
[
$item
[
$id
]];
}
}
unset(
$tmpMap
);
return
$tree
;
}
$items1
=
array
(
array
(
'id'
=> 1,
'pid'
=> 0,
'name'
=>
'一级11'
),
array
(
'id'
=> 11,
'pid'
=> 0,
'name'
=>
'一级12'
),
array
(
'id'
=> 2,
'pid'
=> 1,
'name'
=>
'二级21'
),
array
(
'id'
=> 10,
'pid'
=> 11,
'name'
=>
'二级22'
),
array
(
'id'
=> 3,
'pid'
=> 1,
'name'
=>
'二级23'
),
array
(
'id'
=> 12,
'pid'
=> 11,
'name'
=>
'二级24'
),
array
(
'id'
=> 9,
'pid'
=> 1,
'name'
=>
'二级25'
),
array
(
'id'
=> 14,
'pid'
=> 1,
'name'
=>
'二级26'
),
array
(
'id'
=> 4,
'pid'
=> 9,
'name'
=>
'三级31'
),
array
(
'id'
=> 6,
'pid'
=> 9,
'name'
=>
'三级32'
),
array
(
'id'
=> 7,
'pid'
=> 4,
'name'
=>
'四级41'
),
array
(
'id'
=> 8,
'pid'
=> 4,
'name'
=>
'四级42'
),
array
(
'id'
=> 5,
'pid'
=> 4,
'name'
=>
'四级43'
),
array
(
'id'
=> 13,
'pid'
=> 4,
'name'
=>
'四级44'
),
array
(
'id'
=> 15,
'pid'
=> 8,
'name'
=>
'五级51'
),
array
(
'id'
=> 16,
'pid'
=> 8,
'name'
=>
'五级52'
),
array
(
'id'
=> 17,
'pid'
=> 8,
'name'
=>
'五级53'
),
array
(
'id'
=> 18,
'pid'
=> 16,
'name'
=>
'六级64'
),
);
var_dump(genTree(
$items1
));

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

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

LaravelSanctum is a lightweight authentication package that allows you to easily implement API authentication and SPA (Single Page Application) authentication in Laravel applications. In this article, we will explore how to use LaravelSanctum to implement SPA and API authentication. First, let's look at what SPA and API authentication are. SPA authentication refers to a single page application that does not reload the entire page but uses AJAX to request information from the web server to

Classification and Usage Analysis of JSP Comments JSP comments are divided into two types: single-line comments: ending with, only a single line of code can be commented. Multi-line comments: starting with /* and ending with */, you can comment multiple lines of code. Single-line comment example Multi-line comment example/**This is a multi-line comment*Can comment on multiple lines of code*/Usage of JSP comments JSP comments can be used to comment JSP code to make it easier to read

With the continuous development of Internet technology, more and more websites are beginning to adopt the SPA (SinglePageApplication) architecture. SPA refers to presenting all or most of the content through one page and dynamically updating the page content through the client, rather than using the traditional multi-page method. In this article, we will use Python and React to build a simple SPA example to demonstrate the basic idea and implementation method of SPA. 1. Environment setup Before starting to build, we

Every year before Apple releases a new major version of iOS and macOS, users can download the beta version several months in advance and experience it first. Since the software is used by both the public and developers, Apple has launched developer and public versions, which are public beta versions of the developer beta version, for both. What is the difference between the developer version and the public version of iOS? Literally speaking, the developer version is a developer test version, and the public version is a public test version. The developer version and the public version target different audiences. The developer version is used by Apple for testing by developers. You need an Apple developer account to download and upgrade it.

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

The classification of artificial intelligence includes cognitive AI, machine learning AI and deep learning. Artificial intelligence is a new technical science that studies and develops theories, methods, technologies and application systems for simulating, extending and expanding human intelligence.

Many friends may be unfamiliar with the pid identifier, and you can check it in the task manager. However, some users cannot find the PID identifier when they open the Task Manager. In fact, if the user wants to view the process PID identifier, he or she needs to set the relevant settings of the "Task Manager" to see it. The following editor will take the win7 system as an example. How to view the process PID identifier. The PID identifier is a unique sequential number automatically assigned by the Windows operating system to running programs. After the process is terminated, the PID is recycled by the system and may continue to be assigned to newly running programs. When users need to view the process, they will use the task Manager to check, so how to check the process PID identifier? Let me share it with you below
